initial commit

This commit is contained in:
2025-08-25 09:45:08 +02:00
parent b146b71d61
commit db651263d9
14 changed files with 1094 additions and 0 deletions

18
nginxconf/default Normal file
View File

@@ -0,0 +1,18 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
server_tokens off;
root /var/www/html/default;
index index.html index.htm;
server_name _;
access_log /var/log/nginx/direct.ip.access.log main;
error_log /var/log/nginx/direct.ip.access.error.log crit;
access_log on;
log_not_found off;
location / {
return 444;
try_files $uri $uri/ =404;
}
}