add new site conf

merge-requests/2/head
Matthew 2021-12-21 18:48:46 -05:00
parent c1cfc1ea96
commit 3b87daf4d4
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
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;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Frame-Options SAMEORIGIN;
proxy_pass http://localhost:3001;
proxy_read_timeout 90;
proxy_redirect http://localhost:3001 https://skb.libraryofcode.org;
}
}