diff options
| author | Alexandre Flament <alex@al-f.net> | 2019-07-17 10:29:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-17 10:29:28 +0200 |
| commit | cfcbc3a5c344037fb5423c14223e72578170a234 (patch) | |
| tree | af60b10d3834dc715752b8d43e9fa2b6ec99928a | |
| parent | ec88fb8a0f2db0a789349e04caf23e2283daaf13 (diff) | |
[mod] settings.yml: update comments about the morty key. (#1639)
Fix #1310
Since commit af77ec35d9bd28facdab645a3d57ae340d2b501c Morty accepts base64 encoded key.
| -rw-r--r-- | searx/settings.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/searx/settings.yml b/searx/settings.yml index 0b10c5369..10a049872 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -27,9 +27,11 @@ ui: # searx supports result proxification using an external service: https://github.com/asciimoo/morty # uncomment below section if you have running morty proxy +# the key is base64 encoded (keep the !!binary notation) +# Note: since commit af77ec3, morty accepts a base64 encoded key. #result_proxy: # url : http://127.0.0.1:3000/ -# key : your_morty_proxy_key +# key : !!binary "your_morty_proxy_key" outgoing: # communication with search engines request_timeout : 2.0 # seconds |