sprint/nginx/nginx.conf
Administrator 2ba6113ed1 alias
2022-08-19 16:20:16 +03:00

23 lines
401 B
Nginx Configuration File

events {}
http {
server {
listen 80;
location /checker/ {
proxy_pass http://polling:7998/checker/;
}
location /polling/ {
proxy_pass http://polling:7998/polling/;
}
location /static/ {
alias /var/www/html/static/;
}
location / {
proxy_pass http://web:8000/;
}
}
}