infra/nginx/nginx-prod.conf
Administrator 8833a48605 fix
2022-08-16 08:37:58 +03:00

40 lines
733 B
Plaintext

events {}
http {
client_max_body_size 50m;
server {
listen 80;
server_name dev.sprinthub.ru;
location / {
proxy_pass http://dev.sprinthub.ru:1235/;
}
}
server {
listen 80;
server_name gitlab.sprinthub.ru;
location / {
proxy_pass http://dev.sprinthub.ru:1234/;
}
}
server {
listen 80;
server_name swarmpit.sprinthub.ru;
location / {
proxy_pass http://dev.sprinthub.ru:888/;
}
}
server {
listen 80;
server_name rabbitmq.sprinthub.ru;
location / {
proxy_pass http://dev.sprinthub.ru:15672/;
}
}
}