Install Whoogle search on Synology Docker
https://benbusby.com/projects/whoogle-search/

Get Google search results, but without any ads, javascript, AMP links, cookies, or another tracking. Easily deployable in one click as a Docker app, and customizable with a single config file. Quick and simple to implement as a primary search engine replacement on both desktop and mobile.
Features
- No ads or sponsored content
- No javascript
- No cookies
- No tracking/linking of your personal IP address*
- No AMP links
- No URL tracking tags (i.e. utm=%s)
- No referrer header
- Tor and HTTP/SOCKS proxy support
- Autocomplete/search suggestions
- POST request search and suggestion queries (when possible)
- View images at full res without site redirect (currently mobile only)
- Dark mode
- Randomly generated User Agent
- Easy to install/deploy
- DDG-style bang (i.e.
!<tag> <query>) searches - Optional location-based searching (i.e. results near <city>)
- Optional NoJS mode to disable all Javascript in results
Go to the control panel and Task schudler
Create scheduled Task > User-defined script>
Task name: Install whoogle
User: root
uncheck enable
Task setting: copy the script below and past it in to run the command
Click save to exit, right the install whoogle task, and run it.
In addition to that, you can set up SSL and reverse proxy.
URL http://snology IP:5012
docker pull benbusby/whoogle-search:latest && docker stop whoogle && docker rm whoogle
docker run -d --name=whoogle \
-e WHOOGLE_CONFIG_DISABLE=1 \
-e WHOOGLE_CONFIG_COUNTRY=us \
-e WHOOGLE_CONFIG_LANGUAGE=lang_en \
-e WHOOGLE_CONFIG_SEARCH_LANGUAGE=lang_en \
-e WHOOGLE_CONFIG_THEME=dark \
-e WHOOGLE_CONFIG_SAFE=1 \
-e WHOOGLE_CONFIG_VIEW_IMAGE=1 \
-p 5012:5000 \
--restart always \
benbusby/whoogle-search:latest
Comments
Post a Comment