From 7a8ef152ab4dedc8e82770daec084366ab0b696a Mon Sep 17 00:00:00 2001
From: ghaymah_dev
Date: Tue, 30 Sep 2025 16:34:12 +0000
Subject: [PATCH] Add nginx.conf
---
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..83126be
--- /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;
+ }
+}
\ No newline at end of file