This commit is contained in:
us.nadeko.net 2024-01-16 15:59:41 -03:00
parent f38c9384a5
commit 000f0abe58
1 changed files with 6 additions and 1 deletions

View File

@ -1,10 +1,10 @@
server {
access_log /var/log/nginx/librex.nadeko.net.access.log;
server_name librex.zzls.xyz librex.nadeko.net;
include configs/general.conf;
include configs/security.conf;
location / {
access_log /var/log/nginx/librex.nadeko.net.access.log;
add_header Content-Type text/plain;
return 200 "LibreX is now deprecated, if you come from the hnhx/LibreX repository and want to try LibreX, you should use LibreY, a fork of LibreY maintained by a few individuals. hnhx just vanished without a trace.
@ -19,6 +19,11 @@ server {
Good luck! (´ ∀ ` *)";
}
location /api.php {
# Holy shit fucking bots still pinging my server with shit requests
return 444;
}
listen 443 ssl;
}