jbgiausvftydv satrdv6saudtsabdfgh

This commit is contained in:
Fijxu 2024-01-16 17:30:31 -03:00
parent 000f0abe58
commit 102b063a56
1 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
server {
server_name search.zzls.xyz search.nadeko.net;
include configs/general.conf;
include configs/security.conf;
location / {
add_header Content-Type text/plain;
return 200 "
SearxNG is now down because Oracle deleted my account without even notifying me. Sorry. For now, please use other instance or you can use 4get, a more simple search engine.
\t https://4get.nadeko.net"
}
location /search {
add_header Content-Type text/plain;
return 200 "
SearxNG is now down because Oracle deleted my account without even notifying me. Sorry. For now, please use other instance or you can use 4get, a more simple search engine.
\t https://4get.nadeko.net"
}
listen 443 ssl;
}
server {
if ($host = search.zzls.xyz) {
return 301 https://$host$request_uri;
}
if ($host = zzls.xyz) {
return 301 https://$host$request_uri;
}
if ($host = search.nadeko.net) {
return 301 https://$host$request_uri;
}
if ($host = nadeko.net) {
return 301 https://$host$request_uri;
}
server_name search.zzls.xyz search.nadeko.net;
listen 80;
return 404;
}