sprint/nginx/nginx.conf
Egor Matveev 8949952563 checker
2022-03-31 21:48:08 +03:00

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