infra/nginx/nginx-dev/nginx-dev.conf
Administrator c7044db800 swarmpit
2022-08-31 22:47:22 +03:00

51 lines
949 B
Plaintext

events {}
http {
client_max_body_size 50m;
server {
listen 80;
server_name swarmpit.develop.sprinthub.ru;
location / {
proxy_pass http://app:8080/;
}
}
server {
listen 80;
server_name rabbitmq.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:15672/;
}
}
server {
listen 80;
server_name minio.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:9001/;
}
}
server {
listen 80;
server_name battleship.develop.sprinthub.ru;
location / {
proxy_pass http://battleship-nginx:1236/;
}
}
server {
listen 80;
server_name dev.develop.sprinthub.ru;
location / {
proxy_pass http://sprint-nginx:1235/;
}
}
}