From b32abc4a2fe28c25e4ce84ebc4589a4881e9f44b Mon Sep 17 00:00:00 2001 From: eunhak Date: Tue, 2 Jul 2024 00:33:55 +0900 Subject: [PATCH] nginx setting --- nginx.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..4743a07 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + + server_name eunhak.store; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri /index.html; + } +}