mirror of
https://github.com/kevin-DL/full-stack-fastapi-postgresql.git
synced 2026-01-13 10:35:30 +00:00
Compare commits
2 Commits
0.4.0
...
fix-fronte
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ff901a3ad8 | ||
|
|
f934339288 |
@@ -25,3 +25,4 @@ FROM nginx:1.15
|
||||
COPY --from=build-stage /app/dist/ /usr/share/nginx/html
|
||||
|
||||
COPY --from=build-stage /nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY ./nginx-backend-not-found.conf /etc/nginx/extra-conf.d/backend-not-found.conf
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
location /api {
|
||||
return 404;
|
||||
}
|
||||
location /docs {
|
||||
return 404;
|
||||
}
|
||||
location /redoc {
|
||||
return 404;
|
||||
}
|
||||
Reference in New Issue
Block a user