forked from Icycoide/searxng
add Ahmia filter plugin for onion results
This commit is contained in:
parent
c3daa08537
commit
32957cdf49
5 changed files with 16253 additions and 0 deletions
|
@ -28,6 +28,7 @@ from searx import logger, settings, static_path
|
|||
logger = logger.getChild('plugins')
|
||||
|
||||
from searx.plugins import (oa_doi_rewrite,
|
||||
ahmia_filter,
|
||||
hash_plugin,
|
||||
https_rewrite,
|
||||
infinite_scroll,
|
||||
|
@ -181,3 +182,7 @@ if 'enabled_plugins' in settings:
|
|||
plugin.default_on = True
|
||||
else:
|
||||
plugin.default_on = False
|
||||
|
||||
# load tor specific plugins
|
||||
if settings['outgoing'].get('using_tor_proxy'):
|
||||
plugins.register(ahmia_filter)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue