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