sprint/nginx/nginx.conf
Egor Matveev a091a8ee13 checker
2022-03-31 21:24:46 +03:00

20 lines
332 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://checker:7999/;
}
location / {
proxy_pass http://web:8000/;
}
}
}