Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- upstream fullstack_application {
- server web:8000;
- }
- server {
- listen 80;
- location / {
- proxy_pass http://fullstack_application;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header Host $http_host;
- proxy_redirect off;
- }
- location /static/ {
- alias /home/app/web/static/;
- }
- location /media/ {
- alias /home/app/web/media/;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement