IMPROVE: Replace old searx instance by official one

This commit is contained in:
Jean-Claude 2020-12-13 12:32:21 +01:00
parent 12cccadd97
commit 6d4826cb42
Signed by: jeanclaude
GPG Key ID: 8A300F57CBB9F63E
4 changed files with 1028 additions and 4 deletions

1
.gitignore vendored
View File

@ -12,3 +12,4 @@ Synapse/whatsappRegistration.yaml
WhatsappBridge/config.yaml
WhatsappBridge/registration.yaml
Gitea/app.ini
Searx/settings.yml

View File

@ -19,7 +19,7 @@ server {
listen [::]:443 ssl http2;
server_name searx.jeanclaudegraf.ch;
include /etc/nginx/common.conf;
# include /etc/nginx/common.conf;
# SSL
include /etc/nginx/ssl.conf;
@ -28,7 +28,7 @@ server {
ssl_certificate_key /etc/letsencrypt/live/www.searx.jeanclaudegraf.ch/privkey.pem;
location / {
set $upstream searx:8888;
set $upstream searx:8080;
proxy_pass http://$upstream;
include /etc/nginx/common_location.conf;
}

View File

@ -1,11 +1,14 @@
version: '3.7'
services:
searx:
image: wonderfall/searx
image: searx/searx:latest
container_name: searx
volumes:
- ./settings.yml:/etc/searx/settings.yml
networks:
- ReverseProxy
restart: always
restart: unless-stopped
networks:
ReverseProxy:

1020
Searx/settings.yml_example Normal file

File diff suppressed because it is too large Load Diff