We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c23d69 commit 151f7edCopy full SHA for 151f7ed
{{cookiecutter.project_slug}}/frontend/Dockerfile
@@ -25,3 +25,4 @@ FROM nginx:1.15
25
COPY --from=build-stage /app/dist/ /usr/share/nginx/html
26
27
COPY --from=build-stage /nginx.conf /etc/nginx/conf.d/default.conf
28
+COPY ./nginx-backend-not-found.conf /etc/nginx/extra-conf.d/backend-not-found.conf
{{cookiecutter.project_slug}}/frontend/nginx-backend-not-found.conf
@@ -0,0 +1,9 @@
1
+location /api {
2
+ return 404;
3
+}
4
+location /docs {
5
6
7
+location /redoc {
8
9
0 commit comments