From f180df462c7e9d6118ebe76cea2a8240e40e9801 Mon Sep 17 00:00:00 2001 From: Michael Dürre Date: Tue, 1 Sep 2020 13:22:20 +0200 Subject: fixed sdnc-web proxy for topology api MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixed proxy pass for topology api and synced https Issue-ID: SDNC-1341 Signed-off-by: Michael Dürre Change-Id: Ie45f3fa91a082fd7739e5c040691df5602553c98 Former-commit-id: f2d7e05ffb34afcbbcccc376e6b823725982566a --- .../sdnc-web/src/main/resources/https_site.conf | 24 ++++++++-------------- 1 file changed, 9 insertions(+), 15 deletions(-) (limited to 'installation/sdnc-web/src/main/resources/https_site.conf') diff --git a/installation/sdnc-web/src/main/resources/https_site.conf b/installation/sdnc-web/src/main/resources/https_site.conf index 335aef49..d2d6ecd7 100644 --- a/installation/sdnc-web/src/main/resources/https_site.conf +++ b/installation/sdnc-web/src/main/resources/https_site.conf @@ -75,13 +75,18 @@ server { try_files /help/$args.json $uri; } location ~ ^/transportpce { - try_files $uri $uri/ @backend-transportpce; + if ($request_uri ~* "/transportpce/(.*)") { + proxy_pass TRPCEURL/$1; + } } location ~ ^/topology { - try_files $uri $uri/ @backend-topology; + proxy_pass TOPOURL; } - location ~ ^/tiles { - try_files $uri $uri/ @backend-tiles; + location ~ ^/tiles/ { + resolver 1.1.1.1; + if ($request_uri ~* "/tiles/(.*)") { + proxy_pass TILEURL/$1; + } } location / { try_files $uri $uri/ @backend; @@ -95,15 +100,4 @@ server { location @backend { proxy_pass SDNRPROTOCOL://SDNRHOST:SDNRPORT; } - location @backend-transportpce { - proxy_pass TRPCEURL; - } - location @backend-topology { - proxy_pass TOPOURL; - } - location @backend-tiles { - proxy_pass TILEURL; - } - } - -- cgit 1.2.3-korg