From 571ec59c305b1d5ac7b1e01fe95d738917a50213 Mon Sep 17 00:00:00 2001 From: blahai Date: Mon, 12 Aug 2024 12:04:30 +0000 Subject: [PATCH] nginx --- nginx.conf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 nginx.conf diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..d1202f2 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,14 @@ +server { + listen 80; + server_name uwu.blahai.gay; + + access_log /var/log/nginx/snake_futurestud_io_access.log; + error_log /var/log/nginx/snake_futurestud_io_error.log; + + root /var/www/html/haipage/; + index index.html; + + location / { + try_files $uri $uri/ =404; + } +}