59 lines
1.0 KiB
Plaintext
59 lines
1.0 KiB
Plaintext
events {}
|
|
|
|
http {
|
|
client_max_body_size 50m;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name gitlab.sprinthub.ru;
|
|
|
|
location / {
|
|
proxy_pass http://dev.sprinthub.ru:1234/;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name swarmpit.sprinthub.ru;
|
|
|
|
location / {
|
|
proxy_pass http://app:8080/;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name rabbitmq.sprinthub.ru;
|
|
|
|
location / {
|
|
proxy_pass http://rabbitmq:15672/;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name minio.sprinthub.ru;
|
|
|
|
location / {
|
|
proxy_pass http://minio:9001/;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name battleship.sprinthub.ru;
|
|
|
|
location / {
|
|
proxy_pass http://battleship-nginx:1236/;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name dev.sprinthub.ru;
|
|
|
|
location / {
|
|
proxy_pass http://sprint-nginx:1235/;
|
|
}
|
|
}
|
|
} |