This commit is contained in:
blahai 2024-08-12 12:04:30 +00:00
parent 39c61fd150
commit 571ec59c30

14
nginx.conf Normal file
View file

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