From 564261a72fc2332e650b75362612e663402b033e Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 5 Jan 2022 21:57:52 +0100 Subject: [PATCH] nginx /admin forwarding --- deployment/bare_metal/nginx/sites-available/gradido.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deployment/bare_metal/nginx/sites-available/gradido.conf b/deployment/bare_metal/nginx/sites-available/gradido.conf index 1543b05af..a6723a500 100644 --- a/deployment/bare_metal/nginx/sites-available/gradido.conf +++ b/deployment/bare_metal/nginx/sites-available/gradido.conf @@ -50,7 +50,8 @@ server { proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; - proxy_pass http://127.0.0.1:8080; + #todo remove /admin + proxy_pass http://127.0.0.1:8080/admin; proxy_redirect off; }