summaryrefslogtreecommitdiff
path: root/nginx/default.conf
diff options
context:
space:
mode:
authorIwanIDev <iwan@iwani.dev>2026-03-21 13:15:34 +0000
committerIwanIDev <iwan@iwani.dev>2026-03-21 13:15:34 +0000
commit928fbed509e1dd872de601b75712bcfd13fc00bd (patch)
tree7cdbfaf2712a1780d29c8ea6ef2786efce44a49b /nginx/default.conf
parent63438b226ad462d594472f871f1ae3e7114aaca2 (diff)
Refactor: update Docker configuration and remove Traefik references
Diffstat (limited to 'nginx/default.conf')
-rw-r--r--nginx/default.conf12
1 files changed, 12 insertions, 0 deletions
diff --git a/nginx/default.conf b/nginx/default.conf
new file mode 100644
index 0000000..97d7f4c
--- /dev/null
+++ b/nginx/default.conf
@@ -0,0 +1,12 @@
+server {
+ listen 8380;
+ listen [::]:8380;
+ server_name _;
+
+ root /usr/share/nginx/html;
+ index index.html;
+
+ location / {
+ try_files $uri $uri/ /index.html;
+ }
+}