Skip to content

Instantly share code, notes, and snippets.

@zdwolfe
Created November 5, 2013 16:34
Show Gist options
  • Save zdwolfe/7321821 to your computer and use it in GitHub Desktop.
Save zdwolfe/7321821 to your computer and use it in GitHub Desktop.
upstream api {
server librecms-api.jit.su:80;
}
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