infra/nginx/nginx-dev/nginx-dev.conf
Administrator f1c189f61c ports
2022-08-21 16:01:56 +03:00

40 lines
796 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/;
}
}
server {
listen 80;
server_name minio.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:9001/;
}
}
}