skip to Main Content

Laravel l5-swagger api-docs.json file not found

I am installed composer require "darkaonline/l5-swagger:5.6.*", and i have a api-docs.json from a swagger that I added to storage/api-docs/api-docs.json. But when i go to http://127.0.0.1:8000/api/documentation I got error Fetch error Not Found http://127.0.0.1:8000/docs/api-docs.json I tried to run php artisan l5-swagger:generate…

VIEW QUESTION

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