Separacion de docker para producion y desarrollo

This commit is contained in:
2021-07-13 23:59:45 -04:00
parent 7723cad823
commit 4b71bc67aa
7 changed files with 92 additions and 5 deletions

8
frontend/nginx.conf Normal file
View File

@@ -0,0 +1,8 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}