Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- upstream web {
- ip_hash;
- server web:8081;
- }
- server {
- location /static/ {
- autoindex on;
- root /code/static/;
- }
- location / {
- proxy_pass http://web/;
- }
- listen 8081;
- server_name localhost;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement