skip to Main Content

Spring Boot Swagger through Nginx does not work correctly – Javascript

I have configured two services running in separate containers through nginx. Nginx configuration: server { listen 8080; location /template-order-service/ { proxy_pass_request_headers on; proxy_set_header Host $host; proxy_pass http://template-order-service:8082/; } location /template-product-service/ { proxy_pass_request_headers on; proxy_set_header Host $host; proxy_pass http://template-product-service:8083/; } }…

VIEW QUESTION
Back To Top
Search