infra/nginx_dev/nginx.conf
Administrator 47f71fb20f initial
2022-08-13 14:59:00 +03:00

22 lines
483 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/;
}
}
}