This commit is contained in:
Administrator 2022-08-31 12:59:47 +03:00
parent b992f4465c
commit f25268f0db
2 changed files with 10 additions and 0 deletions

View File

@ -42,6 +42,7 @@ services:
image: rabbitmq:3.7.9-management
ports:
- "5672:5672"
- "15672:15672"
networks:
- infra-net
environment:

View File

@ -47,4 +47,13 @@ http {
proxy_pass http://battleship-nginx:1236/;
}
}
server {
listen 80;
server_name *.develop.sprinthub.ru;
location / {
proxy_pass http://develop.sprinthub.ru/;
}
}
}