20 lines
554 B
Text
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;
|
|
}
|