fix: add frontend nginx.conf, remove obsolete docker-compose version

This commit is contained in:
2026-06-25 13:11:14 +07:00
parent 352c955115
commit 8f9dabba4d
3 changed files with 10 additions and 4 deletions

View File

@@ -1,5 +1,3 @@
version: "3.9"
services:
postgres:
image: postgres:16-alpine

View File

@@ -1,5 +1,3 @@
version: "3.9"
services:
postgres:
image: postgres:16-alpine

10
frontend/nginx.conf Normal file
View File

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