Last active
December 27, 2015 11:39
-
-
Save zdwolfe/7319826 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
upstream api { | |
server 127.0.0.1:3030; | |
} | |
server { | |
listen 0.0.0.0:80 default deferred; | |
server_name librecms; | |
access_log /var/log/nginx/librecms.access.log; | |
error_log /var/log/nginx/librecms.error.log; | |
underscores_in_headers on; | |
location /api/ { | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
proxy_set_header Host $host; | |
proxy_set_header X-NginX-Proxy true; | |
proxy_pass http://api/; | |
proxy_redirect off; | |
proxy_http_version 1.1; | |
proxy_set_header Upgrade $http_upgrade; | |
proxy_set_header Connection "upgrade"; | |
} | |
location / { | |
index index.html; | |
root /var/www/librecms/src/angular/app; | |
try_files $uri $uri/ /index.html =404; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment