Files
full-stack-fastapi-template/{{cookiecutter.project_slug}}/frontend/nginx-backend-not-found.conf
Sebastián Ramírez 151f7ed79b 🐛 Fix frontend hijacking /docs in development (#6)
* 🐛 Fix frontend hijacking /docs in development

* 🐛 Fix frontend Dockerfile copying Nginx config
2019-04-11 21:45:07 +04:00

10 lines
105 B
Plaintext

location /api {
return 404;
}
location /docs {
return 404;
}
location /redoc {
return 404;
}