This commit is contained in:
Administrator
2022-08-18 12:49:46 +03:00
parent 1600962042
commit 2ddfd02b3a
7 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,2 @@
FROM nginx
COPY ./nginx-prod.conf /etc/nginx/nginx.conf

View 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/;
}
}
}