dataset/seed/apache/templates/risotto.conf

16 lines
347 B
Text
Raw Normal View History

2022-03-08 19:42:28 +01:00
# Timeout
2023-06-23 08:12:05 +02:00
Timeout {{ general.apache.apache_timeout }}
2022-03-08 19:42:28 +01:00
# Keepalive
2023-06-23 08:12:05 +02:00
{% if general.apache.apache_keepalive %}
2022-03-08 19:42:28 +01:00
KeepAlive On
2023-06-23 08:12:05 +02:00
{% else %}
2022-03-08 19:42:28 +01:00
KeepAlive Off
2023-06-23 08:12:05 +02:00
{% endif %}
2022-03-08 19:42:28 +01:00
MaxKeepAliveRequests 50
2023-06-23 08:12:05 +02:00
KeepAliveTimeout {{ general.apache.apache_timeout }}
2022-03-08 19:42:28 +01:00
# RemoteIp
RemoteIPHeader X-Forwarded-For
2023-06-23 08:12:05 +02:00
RemoteIPInternalProxy {{ general.revprox.revprox_client_server_ip }}