openresty-config/http.d/default.conf
2025-02-11 20:13:49 -03:00

20 lines
554 B
Text

server {
access_log /var/log/nginx/default.access.log;
server_name sf.nadeko.net;
include configs/general.conf;
include configs/security.conf;
include configs/robotsNone.conf;
location / {
return 200 "
Hi, you just hit the seflhosted server of nadeko.net!
There is nothing here, this is just a landing page for services that don't exist
or deprecated services. If you think there is something missing, contact me!
https://nadeko.net/contact
";
}
listen 443 ssl default_server reuseport;
http2 on;
}