Add http.d directory

Missing since e344128779
This commit is contained in:
Aleksandar Puharic 2023-01-21 02:59:27 +01:00
parent 149e34bcd2
commit 88b4e4514a
Signed by: xZero707
GPG Key ID: 3CC53DCAA9C237BB

View File

@ -0,0 +1,17 @@
# This is a default site configuration which will simply return 404, preventing
# chance access to any other virtualhost.
server {
listen 80 default_server;
listen [::]:80 default_server;
# Everything is a 404
location / {
return 404;
}
# You may need this to prevent return 404 recursion.
location = /404.html {
internal;
}
}