From 572a393440b39a838b99227ba2222a210a495fac Mon Sep 17 00:00:00 2001 From: IwanIDev Date: Wed, 4 Mar 2026 17:47:43 +0000 Subject: Refactor Docker setup: replace inline Nginx configuration with external file and update Docker stack port configuration --- nginx.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nginx.conf (limited to 'nginx.conf') diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..483d49c --- /dev/null +++ b/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + listen [::]:80; + server_name _; + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +} -- cgit