]> git.proxmox.com Git - ceph.git/blob - ceph/qa/tasks/apache.conf.template
bump version to 12.0.3-pve3
[ceph.git] / ceph / qa / tasks / apache.conf.template
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
14 Listen {port}
15 ServerName {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
31 ServerRoot {testdir}/apache
32 ErrorLog {testdir}/archive/apache.{client}/error.log
33 LogFormat "%h l %u %t \"%r\" %>s %b \"{{Referer}}i\" \"%{{User-agent}}i\"" combined
34 CustomLog {testdir}/archive/apache.{client}/access.log combined
35 PidFile {testdir}/apache/tmp.{client}/apache.pid
36 DocumentRoot {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
45 AllowEncodedSlashes On
46 ServerSignature Off
47 MaxRequestsPerChild 0
48