Skip to content

Instantly share code, notes, and snippets.

@brunoliveira8
Last active January 10, 2018 13:45
Show Gist options
  • Save brunoliveira8/90f3c079c4bc9cbef27787b9d1bf60e3 to your computer and use it in GitHub Desktop.
Save brunoliveira8/90f3c079c4bc9cbef27787b9d1bf60e3 to your computer and use it in GitHub Desktop.
Running Angular app and backend in the same server
server {
listen 80;
charset utf-8;
client_max_body_size 100m;
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
root /www;
}
location /media/ {
root /www;
}
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html =404;
}
location /api/ {
proxy_pass http://app:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment