mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
29 lines
771 B
Plaintext
29 lines
771 B
Plaintext
# This exclusion rule is to allow Searx to be added as a search engine in Firefox.
|
|
<LocationMatch "^/searx/(opensearch.xml|static/themes/oscar/img/favicon.png)$">
|
|
Satisfy Any
|
|
Allow from all
|
|
AuthType None
|
|
ProxyPass unix:/run/uwsgi/app/searx/socket|uwsgi://uwsgi-uds-searx/
|
|
</LocationMatch>
|
|
|
|
|
|
# Redirect /searx to /searx/
|
|
<Location /searx>
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteCond %{REQUEST_URI} ^/searx$
|
|
RewriteRule .* /searx/ [R=301,L]
|
|
</IfModule>
|
|
</Location>
|
|
|
|
|
|
<Location /searx/>
|
|
Include includes/freedombox-single-sign-on.conf
|
|
|
|
<IfModule mod_auth_pubtkt.c>
|
|
TKTAuthToken "web-search" "admin"
|
|
</IfModule>
|
|
|
|
ProxyPass unix:/run/uwsgi/app/searx/socket|uwsgi://uwsgi-uds-searx/
|
|
</Location>
|