sprint/nginx/nginx.conf
Administrator 0da3e77b8f static
2022-08-19 14:24:45 +03:00

24 lines
426 B
Nginx Configuration File

events {}
http {
server {
listen 80;
server_name a.com;
location /checker/ {
proxy_pass http://polling:7998/checker/;
}
location /polling/ {
proxy_pass http://polling:7998/polling/;
}
location /static/ {
root /var/www/html/static;
}
location / {
proxy_pass http://web:8000/;
}
}
}