From e972f1c4321ec2633e2989dbdaa714774632c495 Mon Sep 17 00:00:00 2001 From: Janis Date: Tue, 6 Jan 2026 15:23:33 +0100 Subject: [PATCH] feat: Update Dockerfile for multi-platform support and add nginx configuration --- nginx.conf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..40b9650 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,15 @@ +server { + listen 80; + server_name localhost; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri $uri/ /index.html; + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + root /usr/share/nginx/html; + } +}