This commit is contained in:
Administrator 2022-08-30 21:08:04 +03:00
parent 31b57048a2
commit a25319a65e

View File

@ -2,12 +2,12 @@ events {}
http { http {
client_max_body_size 50m; client_max_body_size 50m;
ssl_certificate /etc/nginx/fullchain.pem;
ssl_certificate_pem /etc/nginx/privkey.pem;
server { server {
listen 443; listen 443;
server_name dev.develop.sprinthub.ru; server_name dev.develop.sprinthub.ru;
ssl_certificate /etc/nginx/fullchain.pem;
ssl_certificate_pem /etc/nginx/privkey.pem;
location / { location / {
proxy_pass http://dev.develop.sprinthub.ru:1235/; proxy_pass http://dev.develop.sprinthub.ru:1235/;
@ -17,6 +17,8 @@ http {
server { server {
listen 443; listen 443;
server_name swarmpit.develop.sprinthub.ru; server_name swarmpit.develop.sprinthub.ru;
ssl_certificate /etc/nginx/fullchain.pem;
ssl_certificate_pem /etc/nginx/privkey.pem;
location / { location / {
proxy_pass http://dev.develop.sprinthub.ru:888/; proxy_pass http://dev.develop.sprinthub.ru:888/;
@ -26,6 +28,8 @@ http {
server { server {
listen 443; listen 443;
server_name rabbitmq.develop.sprinthub.ru; server_name rabbitmq.develop.sprinthub.ru;
ssl_certificate /etc/nginx/fullchain.pem;
ssl_certificate_pem /etc/nginx/privkey.pem;
location / { location / {
proxy_pass http://dev.develop.sprinthub.ru:15672/; proxy_pass http://dev.develop.sprinthub.ru:15672/;
@ -35,6 +39,8 @@ http {
server { server {
listen 443; listen 443;
server_name minio.develop.sprinthub.ru; server_name minio.develop.sprinthub.ru;
ssl_certificate /etc/nginx/fullchain.pem;
ssl_certificate_pem /etc/nginx/privkey.pem;
location / { location / {
proxy_pass http://dev.develop.sprinthub.ru:9001/; proxy_pass http://dev.develop.sprinthub.ru:9001/;
@ -44,6 +50,8 @@ http {
server { server {
listen 443; listen 443;
server_name battleship.develop.sprinthub.ru; server_name battleship.develop.sprinthub.ru;
ssl_certificate /etc/nginx/fullchain.pem;
ssl_certificate_pem /etc/nginx/privkey.pem;
location / { location / {
proxy_pass http://dev.develop.sprinthub.ru:1236/; proxy_pass http://dev.develop.sprinthub.ru:1236/;