Last active
September 30, 2022 18:34
-
-
Save octaflop/4991052 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The upstream server doesn't need a prefix! no need for wss:// or http:// because nginx will upgrade to http1.1 in the config below | |
upstream yeomanserver { | |
server localhost:3000; | |
} | |
server { | |
listen 443; | |
server_name legionofevil.org; | |
root html; | |
index index.html index.html; | |
access_log /var/log/nginx/access_443.log; | |
error_log /var/log/nginx/error_443.log; | |
ssl on; | |
ssl_certificate /srv/ssl/nginx.pem; | |
ssl_certificate_key /srv/ssl/nginx.key; | |
ssl_session_cache shared:SSL:10m; | |
ssl_session_timeout 5m; | |
location / { | |
proxy_pass http://yeomanserver; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
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 https; | |
proxy_redirect off; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment