fix
This commit is contained in:
31
nginx/nginx-dev.conf
Normal file
31
nginx/nginx-dev.conf
Normal file
@@ -0,0 +1,31 @@
|
||||
events {}
|
||||
|
||||
http {
|
||||
client_max_body_size 50m;
|
||||
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/;
|
||||
}
|
||||
}
|
||||
}
|
40
nginx/nginx-prod.conf
Normal file
40
nginx/nginx-prod.conf
Normal file
@@ -0,0 +1,40 @@
|
||||
events {}
|
||||
|
||||
http {
|
||||
client_max_body_size 50m;
|
||||
server {
|
||||
listen 80;
|
||||
server_name dev.sprinthub.ru;
|
||||
|
||||
location / {
|
||||
proxy_pass http://dev.sprinthub.ru:1235/;
|
||||
}
|
||||
}
|
||||
|
||||
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://dev.sprinthub.ru:888/;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name rabbitmq.sprinthub.ru;
|
||||
|
||||
location / {
|
||||
proxy_pass http://dev.sprinthub.ru:15672/;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user