infra/nginx/nginx-prod/nginx-prod.conf
Administrator d79461d5d4 ports
2022-08-21 15:59:36 +03:00

49 lines
858 B
Plaintext

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