Skip to content

Commit

Permalink
SearXNG (#96)
Browse files Browse the repository at this point in the history
* Update config.json

* Update index.js

* SearXNG

* Add files via upload

* Update description.json

* Add files via upload

* Update cosmos-compose.json

* Update cosmos-compose.json

* Update cosmos-compose.json
  • Loading branch information
lilkidsuave authored Nov 16, 2023
1 parent dd982a5 commit dc3708c
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 0 deletions.
85 changes: 85 additions & 0 deletions servapps/SearXNG/cosmos-compose.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{
"cosmos-installer": null,
"services": {
"{ServiceName}-redis": {
"container_name": "{ServiceName}-redis",
"hostname": "{ServiceName}-redis",
"image": "redis:alpine",
"command": "redis-server --save \"\" --appendonly no",
"networks": {
"{ServiceName}-net": {}
},
"tmpfs": [
{
"source": "{ServiceName}-redistemp",
"target": "/var/lib/redis",
"type": "volume"
}
],
"cap_drop": [
"ALL"
],
"cap_add": [
"SETGID",
"SETUID",
"DAC_OVERRIDE"
],
"labels": {
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true"
}
},
"{ServiceName}": {
"container_name": "{ServiceName}",
"image": "searxng/searxng:latest",
"networks": {
"{ServiceName}-net": {}
},
"volumes": [
{
"source": "{ServiceName}-data",
"target": "/etc/searxng",
"type": "volume"
}
],
"routes": [
{
"name": "{ServiceName}",
"description": "Expose {ServiceName} to the web",
"useHost": true,
"target": "http://{ServiceName}:8080",
"mode": "SERVAPP",
"Timeout": 14400000,
"ThrottlePerMinute": 12000,
"BlockCommonBots": true,
"SmartShield": {
"Enabled": true
}
}
],
"cap_drop": [
"ALL"
],
"cap_add": [
"CHOWN",
"SETGID",
"SETUID"
],
"labels": {
"cosmos-force-network-secured": "true",
"cosmos-auto-update": "true",
"cosmos-icon": "https://azukaar.github.io/cosmos-servapps-official/servapps/SearXNG/icon.png"
},
"logging": {
"driver": "json-file",
"options": {
"max-size": "1m",
"max-file": "1"
}
}
}
},
"networks": {
"{ServiceName}-net": {}
}
}
9 changes: 9 additions & 0 deletions servapps/SearXNG/description.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "SearXNG",
"longDescription": "SearXNG is a privacy-respecting, open-source metasearch engine that aggregates results from various search engines while respecting user privacy. It allows users to search without being tracked and provides customizable search preferences. SearXNG can be self-hosted or used on public instances, giving users control over their search experience.",
"description": "SearXNG is an open-source metasearch engine focused on privacy and user control.",
"tags": ["search engine", "privacy", "open-source", "metasearch"],
"repository": "https://github.com/searxng/searxng",
"image": "https://hub.docker.com/r/searxng/searxng",
"supported_architectures": ["amd64", "arm64"]
}
Binary file added servapps/SearXNG/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/SearXNG/screenshots/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added servapps/SearXNG/screenshots/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit dc3708c

Please sign in to comment.