Add nginx stage for Docker build

Co-authored-by: coolestcoder655 <74312880+coolestcoder655@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-02 02:01:02 +00:00
parent 041a70ca86
commit 2a1c07f8ff
3 changed files with 43 additions and 6 deletions

11
nginx.conf Normal file
View File

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