From e05b9dfaf1347017c32e9031da05b2927e754e04 Mon Sep 17 00:00:00 2001 From: jafreli Date: Sun, 26 Jan 2025 00:25:40 +0100 Subject: [PATCH] nginx update --- nginx.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..6bbbad5 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,13 @@ +server { + listen 80; + server_name test.out.jafre.li; + + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri /index.html; + } + + error_page 404 /index.html; +}