52 lines
1.1 KiB
Plaintext
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/;
|
|
}
|
|
}
|
|
} |