sprint/nginx/nginx.conf
Administrator 7e54b90358 nginx fix
2022-08-13 15:22:23 +03:00

24 lines
433 B
Nginx Configuration File

events {}
http {
server {
listen 80;
server_name a.com;
location /queue/ {
proxy_pass http://rabbitmq:15672/;
}
location /checker/ {
proxy_pass http://polling:7999/checker/;
}
location /polling/ {
proxy_pass http://polling:7999/polling/;
}
location / {
proxy_pass http://web:8000/;
}
}
}