2021-12-21 18:48:46 -05:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name skb.libraryofcode.org;
|
|
|
|
|
|
|
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
|
|
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
|
|
|
|
|
|
|
client_max_body_size 1G;
|
2022-02-15 00:26:44 -05:00
|
|
|
|
2021-12-21 18:48:46 -05:00
|
|
|
location / {
|
|
|
|
proxy_pass http://localhost:3001;
|
|
|
|
}
|
|
|
|
}
|