From f9e0bb526fa8db5a45b23486143e76ce19830931 Mon Sep 17 00:00:00 2001 From: LukasJuraczka Date: Wed, 7 Jan 2026 14:22:11 +0100 Subject: [PATCH] nginx Proxy config angepasst --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 907073f..fcc86a2 100644 --- a/nginx.conf +++ b/nginx.conf @@ -7,7 +7,7 @@ server { try_files $uri $uri/ /index.html; } - location /api/ProductsRequest { + location /ProdukteApi/ProductsRequest { proxy_pass http://192.168.2.186:9090/ProductsRequest; proxy_set_header Host $host; @@ -15,7 +15,7 @@ server { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } - location /api/CalculateRequest { + location /ProdukteApi/CalculateRequest { proxy_pass http://192.168.2.186:9090/CalculateRequest; proxy_set_header Host $host;