Configured Docker evironment for frontend

This commit is contained in:
Marcin-Ramotowski
2025-04-17 22:10:21 +00:00
parent 0ec30b3ec0
commit 2d947cccc3
4 changed files with 54 additions and 2 deletions

11
frontend/nginx.conf Normal file
View File

@ -0,0 +1,11 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}