tests: adjust the configuration for Apache 2.2
[git.git] / t / lib-httpd / apache.conf
blob2dcbb00865b0a918c015541588a34bb1671d3514
1 ServerName dummy
2 PidFile httpd.pid
3 DocumentRoot www
4 LogFormat "%h %l %u %t \"%r\" %>s %b" common
5 CustomLog access.log common
6 ErrorLog error.log
7 <IfModule !mod_log_config.c>
8         LoadModule log_config_module modules/mod_log_config.so
9 </IfModule>
10 <IfModule !mod_alias.c>
11         LoadModule alias_module modules/mod_alias.so
12 </IfModule>
13 <IfModule !mod_cgi.c>
14         LoadModule cgi_module modules/mod_cgi.so
15 </IfModule>
16 <IfModule !mod_env.c>
17         LoadModule env_module modules/mod_env.so
18 </IfModule>
19 <IfModule !mod_rewrite.c>
20         LoadModule rewrite_module modules/mod_rewrite.so
21 </IFModule>
22 <IfModule !mod_version.c>
23         LoadModule version_module modules/mod_version.so
24 </IfModule>
25 <IfModule !mod_headers.c>
26         LoadModule headers_module modules/mod_headers.so
27 </IfModule>
29 <IfVersion < 2.4>
30 LockFile accept.lock
31 </IfVersion>
33 <IfVersion < 2.1>
34 <IfModule !mod_auth.c>
35         LoadModule auth_module modules/mod_auth.so
36 </IfModule>
37 </IfVersion>
39 <IfVersion >= 2.1>
40 <IfModule !mod_auth_basic.c>
41         LoadModule auth_basic_module modules/mod_auth_basic.so
42 </IfModule>
43 <IfModule !mod_authn_file.c>
44         LoadModule authn_file_module modules/mod_authn_file.so
45 </IfModule>
46 <IfModule !mod_authz_user.c>
47         LoadModule authz_user_module modules/mod_authz_user.so
48 </IfModule>
49 <IfModule !mod_authz_host.c>
50         LoadModule authz_host_module modules/mod_authz_host.so
51 </IfModule>
52 </IfVersion>
54 <IfVersion >= 2.4>
55 <IfModule !mod_authn_core.c>
56         LoadModule authn_core_module modules/mod_authn_core.so
57 </IfModule>
58 <IfModule !mod_authz_core.c>
59         LoadModule authz_core_module modules/mod_authz_core.so
60 </IfModule>
61 <IfModule !mod_access_compat.c>
62         LoadModule access_compat_module modules/mod_access_compat.so
63 </IfModule>
64 <IfModule !mod_mpm_prefork.c>
65         LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
66 </IfModule>
67 <IfModule !mod_unixd.c>
68         LoadModule unixd_module modules/mod_unixd.so
69 </IfModule>
70 </IfVersion>
72 PassEnv GIT_VALGRIND
73 PassEnv GIT_VALGRIND_OPTIONS
74 PassEnv GNUPGHOME
75 PassEnv ASAN_OPTIONS
76 PassEnv GIT_TRACE
78 Alias /dumb/ www/
79 Alias /auth/dumb/ www/auth/dumb/
81 <LocationMatch /smart/>
82         SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
83         SetEnv GIT_HTTP_EXPORT_ALL
84 </LocationMatch>
85 <LocationMatch /smart_noexport/>
86         SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
87 </LocationMatch>
88 <LocationMatch /smart_custom_env/>
89         SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
90         SetEnv GIT_HTTP_EXPORT_ALL
91         SetEnv GIT_COMMITTER_NAME "Custom User"
92         SetEnv GIT_COMMITTER_EMAIL custom@example.com
93 </LocationMatch>
94 <LocationMatch /smart_namespace/>
95         SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
96         SetEnv GIT_HTTP_EXPORT_ALL
97         SetEnv GIT_NAMESPACE ns
98 </LocationMatch>
99 <LocationMatch /smart_cookies/>
100         SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
101         SetEnv GIT_HTTP_EXPORT_ALL
102         Header set Set-Cookie name=value
103 </LocationMatch>
104 <LocationMatch /smart_headers/>
105         SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
106         SetEnv GIT_HTTP_EXPORT_ALL
107 </LocationMatch>
108 ScriptAliasMatch /smart_*[^/]*/(.*) ${GIT_EXEC_PATH}/git-http-backend/$1
109 ScriptAlias /broken_smart/ broken-smart-http.sh/
110 ScriptAlias /error/ error.sh/
111 <Directory ${GIT_EXEC_PATH}>
112         Options FollowSymlinks
113 </Directory>
114 <Files broken-smart-http.sh>
115         Options ExecCGI
116 </Files>
117 <Files error.sh>
118   Options ExecCGI
119 </Files>
120 <Files ${GIT_EXEC_PATH}/git-http-backend>
121         Options ExecCGI
122 </Files>
124 RewriteEngine on
125 RewriteRule ^/smart-redir-perm/(.*)$ /smart/$1 [R=301]
126 RewriteRule ^/smart-redir-temp/(.*)$ /smart/$1 [R=302]
127 RewriteRule ^/smart-redir-auth/(.*)$ /auth/smart/$1 [R=301]
128 RewriteRule ^/smart-redir-limited/(.*)/info/refs$ /smart/$1/info/refs [R=301]
129 RewriteRule ^/ftp-redir/(.*)$ ftp://localhost:1000/$1 [R=302]
131 RewriteRule ^/loop-redir/x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-(.*) /$1 [R=302]
132 RewriteRule ^/loop-redir/(.*)$ /loop-redir/x-$1 [R=302]
134 # Apache 2.2 does not understand <RequireAll>, so we use RewriteCond.
135 # And as RewriteCond does not allow testing for non-matches, we match
136 # the desired case first (one has abra, two has cadabra), and let it
137 # pass by marking the RewriteRule as [L], "last rule, do not process
138 # any other matching RewriteRules after this"), and then have another
139 # RewriteRule that matches all other cases and lets them fail via '[F]',
140 # "fail the request".
141 RewriteCond %{HTTP:x-magic-one} =abra
142 RewriteCond %{HTTP:x-magic-two} =cadabra
143 RewriteRule ^/smart_headers/.* - [L]
144 RewriteRule ^/smart_headers/.* - [F]
146 <IfDefine SSL>
147 LoadModule ssl_module modules/mod_ssl.so
149 SSLCertificateFile httpd.pem
150 SSLCertificateKeyFile httpd.pem
151 SSLRandomSeed startup file:/dev/urandom 512
152 SSLRandomSeed connect file:/dev/urandom 512
153 SSLSessionCache none
154 SSLMutex file:ssl_mutex
155 SSLEngine On
156 </IfDefine>
158 <Location /auth/>
159         AuthType Basic
160         AuthName "git-auth"
161         AuthUserFile passwd
162         Require valid-user
163 </Location>
165 <LocationMatch "^/auth-push/.*/git-receive-pack$">
166         AuthType Basic
167         AuthName "git-auth"
168         AuthUserFile passwd
169         Require valid-user
170 </LocationMatch>
172 <LocationMatch "^/auth-fetch/.*/git-upload-pack$">
173         AuthType Basic
174         AuthName "git-auth"
175         AuthUserFile passwd
176         Require valid-user
177 </LocationMatch>
179 RewriteCond %{QUERY_STRING} service=git-receive-pack [OR]
180 RewriteCond %{REQUEST_URI} /git-receive-pack$
181 RewriteRule ^/half-auth-complete/ - [E=AUTHREQUIRED:yes]
183 <Location /half-auth-complete/>
184   Order Deny,Allow
185   Deny from env=AUTHREQUIRED
187   AuthType Basic
188   AuthName "Git Access"
189   AuthUserFile passwd
190   Require valid-user
191   Satisfy Any
192 </Location>
194 <IfDefine DAV>
195         LoadModule dav_module modules/mod_dav.so
196         LoadModule dav_fs_module modules/mod_dav_fs.so
198         DAVLockDB DAVLock
199         <Location /dumb/>
200                 Dav on
201         </Location>
202         <Location /auth/dumb>
203                 Dav on
204         </Location>
205 </IfDefine>
207 <IfDefine SVN>
208         LoadModule dav_svn_module modules/mod_dav_svn.so
210         <Location /svn>
211                 DAV svn
212                 SVNPath svnrepo
213         </Location>
214 </IfDefine>