sprint/nginx/nginx.conf
Administrator 3b0cc9caed nginx
2022-08-30 22:22:29 +03:00

19 lines
323 B
Nginx Configuration File

events {}
http {
server {
listen 1235;
location /checker/ {
proxy_pass http://polling:7998/checker/;
}
location /polling/ {
proxy_pass http://polling:7998/polling/;
}
location / {
proxy_pass http://web:8000/;
}
}
}