Merge branch 'main' of ssh://git.exozy.me:4884/exozyme/nginx

This commit is contained in:
Anthony Wang 2021-10-04 18:25:12 -05:00
commit 18eccbe982
Signed by untrusted user: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -1,16 +0,0 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name code.exozy.me;
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
location / {
proxy_pass http://localhost:6000;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_set_header Accept-Encoding gzip;
}
}