Results 279 comments of Alexandre Flament

Can you check if there are errors in Firefox Development tool: * in the console tab ? * in the network tab ? what kind of HTTP error ? Also...

First: I see example.com everywhere, I guess you have redacted your hostname ? The CSP headers block the loading ( `Content Security Policy: The page’s settings blocked the loading of...

caddy is bound to the host network: https://github.com/searx/searx-docker/blob/92cdb70360d19711250af6035390f84e5c5ae66f/docker-compose.yaml#L11 The reason: filtron needs the orginal IP address, and Docker won't send the original IPv6 address if caddy is not bound to...

Reading https://www.docker.com/blog/multi-arch-build-what-about-travis/ I have this script for travis: ``` # install the last docker verison (for travis, according to the article, not tested) sudo rm -rf /var/lib/apt/lists/* curl -fsSL https://download.docker.com/linux/ubuntu/gpg...

Thank you for the configuration. I have create [dalf/searx@docker-buildx branch](https://github.com/dalf/searx/tree/docker-buildx): * [.travis.yml](https://github.com/dalf/searx/blob/docker-buildx/.travis.yml) * [manage.sh](https://github.com/dalf/searx/blob/96f87f00cdea6497d19b3a565e247372432b5237/manage.sh#L152-L168) Output here: https://travis-ci.org/github/dalf/searx/jobs/732563796 Unfortunately, the build takes forever and timeout. Most probably pyopenssl can be removed...

Looking at * https://github.com/searx/searx/blob/master/.github/workflows/integration.yml#L86-L117 * https://github.com/searx/searx/blob/5fb9a5c7c10252b21a23fe66e1625ed9f8691b4a/manage.sh#L154-L163 few things are missing.

It is possible to speed lxml install / compilation: `pip install lxml --global-option="build_ext" --global-option="-j3"` Moreover, there is no need to install [`pyopenssl`](https://github.com/searx/searx/blob/dbfd5567aaa06a5f9792bb0839af74877ed5258c/requirements.txt#L9) : see https://github.com/psf/requests/blob/master/HISTORY.md#2250-2020-11-11 ( `requests[security]` is deprecated ).

Morty supports socks5 proxy since https://github.com/asciimoo/morty/commit/939ebe28caa73249c5ab1172fa44366138224241

Thank you ! Some feed backs ### Tempesta FW [use cases](https://github.com/tempesta-tech/tempesta/wiki/Use-cases) : * Clouds : nope * High availability : nope * DDoS mitigation : nope * Web security :...

Sorry for the delay. Can you explain what is messy ? Some notes about the current docker-compose.yaml : * most probably, the hard-codded IPs, container_name and hostname fields can be...