infra/nginx/nginx-dev/nginx-dev.conf
Administrator 6357739d27 certbot
2022-08-30 19:37:26 +03:00

61 lines
1.2 KiB
Plaintext

events {}
http {
client_max_body_size 50m;
server {
listen 80;
listen [::]:80;
server_name *.develop.sprinthub.ru;
location ~ /.well-known/acme-challenge {
allow all;
root /var/www/html;
}
}
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/;
}
}
server {
listen 80;
server_name battleship.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:1236/;
}
}
}