]> git.proxmox.com Git - ceph.git/blame - ceph/qa/tasks/apache.conf.template
bump version to 12.0.3-pve3
[ceph.git] / ceph / qa / tasks / apache.conf.template
CommitLineData
7c673cae
FG
1<IfModule !version_module>
2 LoadModule version_module {mod_path}/mod_version.so
3</IfModule>
4<IfModule !env_module>
5 LoadModule env_module {mod_path}/mod_env.so
6</IfModule>
7<IfModule !rewrite_module>
8 LoadModule rewrite_module {mod_path}/mod_rewrite.so
9</IfModule>
10<IfModule !log_config_module>
11 LoadModule log_config_module {mod_path}/mod_log_config.so
12</IfModule>
13
14Listen {port}
15ServerName {host}
16
17<IfVersion >= 2.4>
18 <IfModule !unixd_module>
19 LoadModule unixd_module {mod_path}/mod_unixd.so
20 </IfModule>
21 <IfModule !authz_core_module>
22 LoadModule authz_core_module {mod_path}/mod_authz_core.so
23 </IfModule>
24 <IfModule !mpm_worker_module>
25 LoadModule mpm_worker_module {mod_path}/mod_mpm_worker.so
26 </IfModule>
27 User {user}
28 Group {group}
29</IfVersion>
30
31ServerRoot {testdir}/apache
32ErrorLog {testdir}/archive/apache.{client}/error.log
33LogFormat "%h l %u %t \"%r\" %>s %b \"{{Referer}}i\" \"%{{User-agent}}i\"" combined
34CustomLog {testdir}/archive/apache.{client}/access.log combined
35PidFile {testdir}/apache/tmp.{client}/apache.pid
36DocumentRoot {testdir}/apache/htdocs.{client}
37
38
39<Directory {testdir}/apache/htdocs.{client}>
40 Options +ExecCGI
41 AllowOverride All
42 SetHandler fastcgi-script
43</Directory>
44
45AllowEncodedSlashes On
46ServerSignature Off
47MaxRequestsPerChild 0
48