From 792f4cf7725c129802c0460567887bf2f8caa055 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Tue, 24 Jan 2023 12:38:22 +0000 Subject: [PATCH] Fix nginx.dev --- hosting/nginx.dev.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hosting/nginx.dev.conf b/hosting/nginx.dev.conf index 5e37ba42a1..1ecee422cd 100644 --- a/hosting/nginx.dev.conf +++ b/hosting/nginx.dev.conf @@ -53,7 +53,7 @@ http { } location /db/ { - proxy_pass http://dev-service:5984; + proxy_pass http://couchdb-service:5984; rewrite ^/db/(.*)$ /$1 break; } @@ -183,7 +183,7 @@ http { proxy_set_header Connection ""; chunked_transfer_encoding off; - proxy_pass http://dev-service:9000; + proxy_pass http://minio-service:9000; } location /files/signed/ { @@ -194,7 +194,7 @@ http { # IMPORTANT: Signed urls will inspect the host header of the request. # Normally a signed url will need to be generated with a specified client host in mind. # To support dynamic hosts, e.g. some unknown self-hosted installation url, - # use a predefined host header. The host 'dev-service' is also used at the time of url signing. + # use a predefined host header. The host 'minio-service' is also used at the time of url signing. proxy_set_header Host minio-service; proxy_connect_timeout 300; @@ -202,7 +202,7 @@ http { proxy_set_header Connection ""; chunked_transfer_encoding off; - proxy_pass http://dev-service:9000; + proxy_pass http://minio-service:9000; rewrite ^/files/signed/(.*)$ /$1 break; }