sprint/nginx/nginx.conf
Egor Matveev e5572b59b1 queue
2022-03-31 11:58:45 +03:00

16 lines
247 B
Nginx Configuration File

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