infra/nginx/nginx-dev/nginx-dev.conf
Administrator 2ddfd02b3a gitlab
2022-08-18 12:49:46 +03:00

31 lines
610 B
Plaintext

events {}
http {
client_max_body_size 50m;
server {
listen 80;
server_name dev.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:1235/;
}
}
server {
listen 80;
server_name swarmpit.develop.sprinthub.ru;
location / {
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/;
}
}
}