remove unused nginx stuff

This commit is contained in:
Pavel Murygin 2021-06-17 13:46:09 +03:00
parent 6f8607e254
commit 03c11cbbab
2 changed files with 0 additions and 13 deletions

View File

@ -1,4 +0,0 @@
FROM nginx
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
COPY dist /usr/share/nginx/html

View File

@ -1,9 +0,0 @@
server {
listen 80;
server_name frontend;
location / {
# This would be the directory where your React app's static files are stored at
root /usr/share/nginx/html;
try_files $uri /index.html;
}
}