20 lines
340 B
Nginx Configuration File
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/;
|
|
}
|
|
}
|
|
} |