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; + } +}