🐳 feature 3 set up envs for the tdrive

* 🐳 Set up envs for the TDrive
- Change the port in docker file according to default app configuration
- Remove obsolete rewrite rule
This commit is contained in:
Anton Shepilov
2023-04-14 13:31:20 +02:00
committed by GitHub
parent 1d83a583dc
commit 3be88c5a50
2 changed files with 1 additions and 6 deletions
-5
View File
@@ -92,9 +92,4 @@ server {
try_files $uri @rewriteapp;
}
location @rewriteapp {
# rewrite all to app.php
rewrite ^(.*)$ /app.php/$1 last;
}
}
+1 -1
View File
@@ -49,5 +49,5 @@ CMD ["npm", "run", "dev:debug"]
# Production Stage
FROM installed-libs as production
EXPOSE 3000
EXPOSE 4000
CMD ["npm", "run", "serve"]