This commit is contained in:
Administrator 2022-08-15 18:11:45 +03:00
parent 67c988a52e
commit e2f51957d3
2 changed files with 18 additions and 0 deletions

View File

@ -19,4 +19,13 @@ http {
proxy_pass http://dev.develop.sprinthub.ru:888/; proxy_pass http://dev.develop.sprinthub.ru:888/;
} }
} }
server {
listen 80;
server_name rabbitmq.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:15672/;
}
}
} }

View File

@ -28,4 +28,13 @@ http {
proxy_pass http://dev.sprinthub.ru:888/; proxy_pass http://dev.sprinthub.ru:888/;
} }
} }
server {
listen 80;
server_name rabbitmq.sprinthub.ru;
location / {
proxy_pass http://dev.sprinthub.ru:15672/;
}
}
} }