infra/nginx/nginx-dev/nginx-dev.conf
Administrator 31b57048a2 certs
2022-08-30 21:06:17 +03:00

52 lines
1.1 KiB
Plaintext

events {}
http {
client_max_body_size 50m;
ssl_certificate /etc/nginx/fullchain.pem;
ssl_certificate_pem /etc/nginx/privkey.pem;
server {
listen 443;
server_name dev.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:1235/;
}
}
server {
listen 443;
server_name swarmpit.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:888/;
}
}
server {
listen 443;
server_name rabbitmq.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:15672/;
}
}
server {
listen 443;
server_name minio.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:9001/;
}
}
server {
listen 443;
server_name battleship.develop.sprinthub.ru;
location / {
proxy_pass http://dev.develop.sprinthub.ru:1236/;
}
}
}