sprint/nginx/nginx.conf
Administrator b9c70c8e2c no rabbit
2022-08-16 14:57:20 +03:00

20 lines
348 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 / {
proxy_pass http://web:8000/;
}
}
}