Last active
January 23, 2022 07:57
-
-
Save LeCoupa/9877434 to your computer and use it in GitHub Desktop.
How to deploy a Meteor application with SSL on Nginx --> https://github.com/LeCoupa/awesome-cheatsheets
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
# Note: if you want to run multiple meteor apps on the same server, | |
# make sure to define a separate port for each. | |
# Upstreams | |
upstream gentlenode { | |
server 127.0.0.1:58080; | |
} | |
# HTTP Server | |
server { | |
listen 0.0.0.0:80; | |
server_name gentlenode.com; | |
rewrite ^ https://$server_name$request_uri permanent; | |
} | |
# HTTPS Server | |
server { | |
listen 443; | |
server_name gentlenode.com; | |
root /srv/data_studio/web/gentlenode.com; | |
error_log /var/log/nginx/gentlenode.com.log crit; | |
ssl on; | |
ssl_certificate /etc/nginx/ssl/gentlenode.com.crt; | |
ssl_certificate_key /etc/nginx/ssl/gentlenode.com.key; | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # don’t use SSLv3 ref: POODLE | |
location / { | |
proxy_pass http://gentlenode/; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
proxy_set_header Host $http_host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for; | |
proxy_set_header X-Forward-Proto http; | |
proxy_set_header X-Nginx-Proxy true; | |
proxy_redirect off; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@teknologist I got the same issue. Is this a Meteor bug?