Browse Source

Made Timeout optional

master
Alexander Weidinger 8 years ago
parent
commit
cc9d81c3b1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      apache/vhosts/standard.tmpl

+ 1
- 1
apache/vhosts/standard.tmpl View File

@@ -58,7 +58,7 @@
{% if site.get('DocumentRoot') != False -%}DocumentRoot {{ vals.DocumentRoot }}{% endif %}
{% if site.get('VirtualDocumentRoot') -%}VirtualDocumentRoot {{ vals.VirtualDocumentRoot }}{% endif %}

{% if site.get('Timeout') != False %}Timeout {{ vals.Timeout }}{% endif %}
{% if site.get('Timeout') != False and site.get('Timeout') != None %}Timeout {{ vals.Timeout }}{% endif %}
{% if site.get('LimitRequestFields') %}LimitRequestFields {{ vals.LimitRequestFields }}{% endif %}

{%- if site.get('SSLCertificateFile') %}

Loading…
Cancel
Save