2020-01-21 17:38:57 +00:00
|
|
|
# -*- coding: utf-8; mode: apache -*-
|
|
|
|
|
|
|
|
<IfModule mod_uwsgi.c>
|
|
|
|
|
2020-01-27 18:08:40 +00:00
|
|
|
# SetEnvIf Request_URI "${SEARX_URL_PATH}" dontlog
|
2020-01-21 17:38:57 +00:00
|
|
|
# CustomLog /dev/null combined env=dontlog
|
|
|
|
|
2020-01-27 18:08:40 +00:00
|
|
|
<Location ${SEARX_URL_PATH}>
|
2020-01-21 17:38:57 +00:00
|
|
|
|
|
|
|
<IfModule mod_security2.c>
|
|
|
|
SecRuleEngine Off
|
|
|
|
</IfModule>
|
|
|
|
|
2020-02-04 18:47:33 +00:00
|
|
|
Require all granted
|
|
|
|
|
2020-01-21 17:38:57 +00:00
|
|
|
Options FollowSymLinks Indexes
|
|
|
|
SetHandler uwsgi-handler
|
|
|
|
uWSGISocket ${SEARX_UWSGI_SOCKET}
|
|
|
|
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
# Allow from fd00::/8 192.168.0.0/16 fe80::/10 127.0.0.0/8 ::1
|
|
|
|
Allow from all
|
|
|
|
|
|
|
|
</Location>
|
|
|
|
|
|
|
|
</IfModule>
|