-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
1 parent
dd982a5
commit dc3708c
Showing
5 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": {} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.