searxng/utils/templates/lib/systemd/system/filtron.service
Markus Heiser b8d1f33b54 [fix] filtron.service: set -read-buffer-size 65536
Invrease filtron buffer size to prevent `Too big request header` errors.

See https://github.com/searxng/filtron/issues/6#issuecomment-1009367442

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2022-01-10 23:24:49 +01:00

29 lines
728 B
Desktop File

[Unit]
Description=${SERVICE_NAME}
After=syslog.target
After=network.target
[Service]
Type=simple
User=${SERVICE_USER}
Group=${SERVICE_GROUP}
WorkingDirectory=${SERVICE_HOME}
ExecStart=${SERVICE_HOME}/go-apps/bin/filtron -api '${FILTRON_API}' -listen '${FILTRON_LISTEN}' -rules '${FILTRON_RULES}' -target '${FILTRON_TARGET}' -read-buffer-size 65536
Restart=always
Environment=USER=${SERVICE_USER} HOME=${SERVICE_HOME}
# Some distributions may not support these hardening directives. If you cannot
# start the service due to an unknown option, comment out the ones not supported
# by your version of systemd.
ProtectSystem=full
PrivateDevices=yes
PrivateTmp=yes
NoNewPrivileges=true
[Install]
WantedBy=multi-user.target