sprint/nginx/nginx.conf
Egor Matveev 643776afd8 cluster
2022-06-11 17:31:08 +03:00

28 lines
517 B
Nginx Configuration File

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