Compare commits

..

14 Commits
prod ... devel

Author SHA1 Message Date
511e6f54ed
bump: 2024.12.25-73e395c8c
All checks were successful
/ deploy (push) Successful in 5s
2024-12-26 08:01:17 +00:00
62c8ff645a
feat: generate blacklist from Dan Pollock’s hosts 2024-12-26 08:00:28 +00:00
33d6a9c1cc
fix: k replace stdin
All checks were successful
/ deploy (push) Successful in 5s
2024-12-23 03:01:55 +00:00
855209b8a5
fix: config configmap too big
Some checks failed
/ deploy (push) Failing after 4s
2024-12-23 03:00:33 +00:00
8049e51a75
fix: mount all config files pod
Some checks failed
/ deploy (push) Failing after 8s
2024-12-23 02:53:05 +00:00
c62cd7ce24
feat: Dan Pollock’s hosts file
All checks were successful
/ deploy (push) Successful in 5s
2024-12-23 02:38:47 +00:00
eb9a111664
bump: 2024.12.20-19ee529b7
All checks were successful
/ deploy (push) Successful in 5s
2024-12-22 07:33:37 +00:00
c835ddd47a
bump: 2024.9.26-6a3375be3
All checks were successful
/ deploy (push) Successful in 5s
2024-09-27 07:50:31 +07:00
4b019d7d58
chore: bump 2024.7.29-98c73010f 2024-09-27 07:50:31 +07:00
36a680ad58
bump: 2024.7.3-4eaa0dd27 2024-09-27 07:50:30 +07:00
d7f49e7524
fix: remove unused regcred 2024-09-27 07:50:30 +07:00
ffbd13cf55
fix: remove unused regcred 2024-09-27 07:50:30 +07:00
29465145e6
bump: 2024.6.7-f5eb56b63 2024-09-27 07:50:30 +07:00
76c3908cb2
fix: ban entire domain 2024-09-27 07:50:30 +07:00
4 changed files with 5627 additions and 2178 deletions

2
.env
View File

@ -1,2 +1,2 @@
PROD_URL=searx.gmoker.com
IMAGEAPP=docker.io/searxng/searxng:2024.12.22-26097f444
IMAGEAPP=docker.io/searxng/searxng:2024.12.25-73e395c8c

File diff suppressed because it is too large Load Diff

View File

@ -334,6 +334,25 @@ engines:
timeout: 6
disabled: true
- name: alexandria
engine: json_engine
shortcut: alx
categories: general
paging: true
search_url: https://api.alexandria.org/?a=1&q={query}&p={pageno}
results_query: results
title_query: title
url_query: url
content_query: snippet
timeout: 1.5
disabled: true
about:
website: https://alexandria.org/
official_api_documentation: https://github.com/alexandria-org/alexandria-api/raw/master/README.md
use_official_api: true
require_api_key: false
results: JSON
- name: alpine linux packages
engine: alpinelinux
disabled: true

View File

@ -0,0 +1,27 @@
#!/usr/bin/env python3
import urllib.request as request
import re
HOSTS = "https://someonewhocares.org/hosts/zero/hosts"
OUTPUT = "config/hostnames_remove.yml"
def main():
with request.urlopen(HOSTS) as i:
with open(OUTPUT, "w+") as o:
print(
*sorted(
[
rf"- '(.*\.)?{re.escape(l.split()[1])}$'"
for l in i.read().decode("utf-8").split("\n")
if l.startswith("0")
]
),
sep="\n",
file=o,
)
if __name__ == "__main__":
main()