infra/nginx_dev/nginx.conf
Administrator 5667330562 swarmpit2
2022-08-14 11:07:03 +03:00

31 lines
672 B
Nginx Configuration File

events {}
http {
client_max_body_size 50m;
server {
listen 80;
server_name dev.develop.sprinthub.ru www.dev.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:1235/;
}
}
server {
listen 80;
server_name swarmpit.develop.sprinthub.ru www.swarmpit.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:888/;
}
}
server {
listen 80;
server_name swarmpit2.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:888/;
}
}
}