Browse Source

net/safe-search Add duckduckgo.com

Signed-off-by: Gregory L. Dietsche <gregory.dietsche@cuw.edu>
lilik-openwrt-22.03
Gregory L. Dietsche 5 years ago
parent
commit
2a5f85229b
4 changed files with 39 additions and 14 deletions
  1. +2
    -2
      net/safe-search/Makefile
  2. +18
    -12
      net/safe-search/Readme.md
  3. +16
    -0
      net/safe-search/files/hosts/duckduckgo.default
  4. +3
    -0
      net/safe-search/files/safe-search.conf

+ 2
- 2
net/safe-search/Makefile View File

@ -6,8 +6,8 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=safe-search
PKG_VERSION:=1.0.0
PKG_RELEASE:=2
PKG_VERSION:=1.0.1
PKG_RELEASE:=1
PKG_LICENSE:=MIT
PKG_MAINTAINER:=Gregory L. Dietsche <Gregory.Dietsche@cuw.edu>


+ 18
- 12
net/safe-search/Readme.md View File

@ -2,18 +2,24 @@
This package prevents adult content from appearing in search results by
configuring dnsmasq to force all devices on your network to use Google and
Bing's Safe Search IP addresses. This is designed to be approperiate for most
Bing's Safe Search IP addresses. This is designed to be appropriate for most
businesses and families. The default filtering rules do not interfere with
normal web browsing.
Currently supported:
- Google Safe Search - enabled by default
- https://support.google.com/websearch/answer/186669
- Bing Safe Search - enabled by default
- https://help.bing.microsoft.com/#apex/18/en-US/10003/0
- youtube Safe Search
- https://support.google.com/a/answer/6214622
- https://support.google.com/a/answer/6212415
- https://www.youtube.com/check_content_restrictions
- Not enabled by default because it is designed for children.
- Enable by editing /etc/config/safe-search and then run safe-search-update
Enabled and disable Safe Search by editing /etc/config/safe-search . To make
your changes active, run safe-search-update.
Currently Supported:
- Enabled By Default
- www.bing.com Safe Search
- https://help.bing.microsoft.com/#apex/18/en-US/10003/0
- DuckDuckGo.com Safe Search
- https://duck.co/help/features/safe-search
- www.Google.com Safe Search
- https://support.google.com/websearch/answer/186669
- Not Enabled By Default:
- youtube Safe Search
- https://support.google.com/a/answer/6214622
- https://support.google.com/a/answer/6212415
- https://www.youtube.com/check_content_restrictions
- Not enabled because it is designed for children, and may annoy adults...

+ 16
- 0
net/safe-search/files/hosts/duckduckgo.default View File

@ -0,0 +1,16 @@
#
# Copyright (c) 2019 Gregory L. Dietsche <Gregory.Dietsche@cuw.edu>
# This is free software, licensed under the MIT License
#
#
# IMPORTANT: if this file is not working, make sure that dnsmasq is able to READ it!
#
#50.16.250.179 safe.duckduckgo.com
#54.208.102.2 safe.duckduckgo.com
#52.204.96.252 safe.duckduckgo.com
50.16.250.179 duckduckgo.com
54.208.102.2 duckduckgo.com
52.204.96.252 duckduckgo.com

+ 3
- 0
net/safe-search/files/safe-search.conf View File

@ -8,6 +8,9 @@
config safe-search 'bing'
option enabled 1
config safe-search 'duckduckgo'
option enabled 1
config safe-search 'google'
option enabled 1


Loading…
Cancel
Save