]> git.ipfire.org Git - thirdparty/git.git/blob - t/lib-httpd/apache.conf
Merge branch 'ar/userdiff-java-update'
[thirdparty/git.git] / t / lib-httpd / apache.conf
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>
28 <IfModule !mod_setenvif.c>
29 LoadModule setenvif_module modules/mod_setenvif.so
30 </IfModule>
31
32 <IfDefine HTTP2>
33 LoadModule http2_module modules/mod_http2.so
34 Protocols h2c
35 </IfDefine>
36
37 <IfModule !mod_auth_basic.c>
38 LoadModule auth_basic_module modules/mod_auth_basic.so
39 </IfModule>
40 <IfModule !mod_authn_file.c>
41 LoadModule authn_file_module modules/mod_authn_file.so
42 </IfModule>
43 <IfModule !mod_authz_user.c>
44 LoadModule authz_user_module modules/mod_authz_user.so
45 </IfModule>
46 <IfModule !mod_authz_host.c>
47 LoadModule authz_host_module modules/mod_authz_host.so
48 </IfModule>
49
50 <IfModule !mod_authn_core.c>
51 LoadModule authn_core_module modules/mod_authn_core.so
52 </IfModule>
53 <IfModule !mod_authz_core.c>
54 LoadModule authz_core_module modules/mod_authz_core.so
55 </IfModule>
56 <IfModule !mod_access_compat.c>
57 LoadModule access_compat_module modules/mod_access_compat.so
58 </IfModule>
59 <IfModule !mod_unixd.c>
60 LoadModule unixd_module modules/mod_unixd.so
61 </IfModule>
62
63 <IfDefine HTTP2>
64 <IfModule !mod_mpm_event.c>
65 LoadModule mpm_event_module modules/mod_mpm_event.so
66 </IfModule>
67 </IfDefine>
68 <IfDefine !HTTP2>
69 <IfModule !mod_mpm_prefork.c>
70 LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
71 </IfModule>
72 </IfDefine>
73
74 PassEnv GIT_VALGRIND
75 PassEnv GIT_VALGRIND_OPTIONS
76 PassEnv GNUPGHOME
77 PassEnv ASAN_OPTIONS
78 PassEnv LSAN_OPTIONS
79 PassEnv GIT_TRACE
80 PassEnv GIT_CONFIG_NOSYSTEM
81 PassEnv GIT_TEST_SIDEBAND_ALL
82 PassEnv LANG
83 PassEnv LC_ALL
84
85 Alias /dumb/ www/
86 Alias /auth/dumb/ www/auth/dumb/
87
88 <LocationMatch /smart/>
89 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
90 SetEnv GIT_HTTP_EXPORT_ALL
91 </LocationMatch>
92 <LocationMatch /smart_noexport/>
93 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
94 </LocationMatch>
95 <LocationMatch /smart_custom_env/>
96 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
97 SetEnv GIT_HTTP_EXPORT_ALL
98 SetEnv GIT_COMMITTER_NAME "Custom User"
99 SetEnv GIT_COMMITTER_EMAIL custom@example.com
100 </LocationMatch>
101 <LocationMatch /smart_namespace/>
102 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
103 SetEnv GIT_HTTP_EXPORT_ALL
104 SetEnv GIT_NAMESPACE ns
105 </LocationMatch>
106 <LocationMatch /smart_cookies/>
107 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
108 SetEnv GIT_HTTP_EXPORT_ALL
109 Header set Set-Cookie name=value
110 </LocationMatch>
111 <LocationMatch /smart_headers/>
112 <RequireAll>
113 Require expr %{HTTP:x-magic-one} == 'abra'
114 Require expr %{HTTP:x-magic-two} == 'cadabra'
115 </RequireAll>
116 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
117 SetEnv GIT_HTTP_EXPORT_ALL
118 </LocationMatch>
119 <LocationMatch /one_time_perl/>
120 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
121 SetEnv GIT_HTTP_EXPORT_ALL
122 </LocationMatch>
123 <LocationMatch /smart_v0/>
124 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
125 SetEnv GIT_HTTP_EXPORT_ALL
126 SetEnv GIT_PROTOCOL
127 </LocationMatch>
128 ScriptAlias /smart/incomplete_length/git-upload-pack incomplete-length-upload-pack-v2-http.sh/
129 ScriptAlias /smart/incomplete_body/git-upload-pack incomplete-body-upload-pack-v2-http.sh/
130 ScriptAlias /smart/no_report/git-receive-pack error-no-report.sh/
131 ScriptAliasMatch /error_git_upload_pack/(.*)/git-upload-pack error.sh/
132 ScriptAliasMatch /smart_*[^/]*/(.*) ${GIT_EXEC_PATH}/git-http-backend/$1
133 ScriptAlias /broken_smart/ broken-smart-http.sh/
134 ScriptAlias /error_smart/ error-smart-http.sh/
135 ScriptAlias /error/ error.sh/
136 ScriptAliasMatch /one_time_perl/(.*) apply-one-time-perl.sh/$1
137 <Directory ${GIT_EXEC_PATH}>
138 Options FollowSymlinks
139 </Directory>
140 <Files incomplete-length-upload-pack-v2-http.sh>
141 Options ExecCGI
142 </Files>
143 <Files incomplete-body-upload-pack-v2-http.sh>
144 Options ExecCGI
145 </Files>
146 <Files error-no-report.sh>
147 Options ExecCGI
148 </Files>
149 <Files broken-smart-http.sh>
150 Options ExecCGI
151 </Files>
152 <Files error-smart-http.sh>
153 Options ExecCGI
154 </Files>
155 <Files error.sh>
156 Options ExecCGI
157 </Files>
158 <Files apply-one-time-perl.sh>
159 Options ExecCGI
160 </Files>
161 <Files ${GIT_EXEC_PATH}/git-http-backend>
162 Options ExecCGI
163 </Files>
164
165 RewriteEngine on
166 RewriteRule ^/dumb-redir/(.*)$ /dumb/$1 [R=301]
167 RewriteRule ^/smart-redir-perm/(.*)$ /smart/$1 [R=301]
168 RewriteRule ^/smart-redir-temp/(.*)$ /smart/$1 [R=302]
169 RewriteRule ^/smart-redir-auth/(.*)$ /auth/smart/$1 [R=301]
170 RewriteRule ^/smart-redir-limited/(.*)/info/refs$ /smart/$1/info/refs [R=301]
171 RewriteRule ^/ftp-redir/(.*)$ ftp://localhost:1000/$1 [R=302]
172
173 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]
174 RewriteRule ^/loop-redir/(.*)$ /loop-redir/x-$1 [R=302]
175
176 # redir-to/502/x?y -> really-redir-to?path=502/x&qs=y which returns 502
177 # redir-to/x?y -> really-redir-to?path=x&qs=y -> x?y
178 RewriteCond %{QUERY_STRING} ^(.*)$
179 RewriteRule ^/redir-to/(.*)$ /really-redir-to?path=$1&qs=%1 [R=302]
180 RewriteCond %{QUERY_STRING} ^path=502/(.*)&qs=(.*)$
181 RewriteRule ^/really-redir-to$ - [R=502,L]
182 RewriteCond %{QUERY_STRING} ^path=(.*)&qs=(.*)$
183 RewriteRule ^/really-redir-to$ /%1?%2 [R=302]
184
185 # The first rule issues a client-side redirect to something
186 # that _doesn't_ look like a git repo. The second rule is a
187 # server-side rewrite, so that it turns out the odd-looking
188 # thing _is_ a git repo. The "[PT]" tells Apache to match
189 # the usual ScriptAlias rules for /smart.
190 RewriteRule ^/insane-redir/(.*)$ /intern-redir/$1/foo [R=301]
191 RewriteRule ^/intern-redir/(.*)/foo$ /smart/$1 [PT]
192
193 # Serve info/refs internally without redirecting, but
194 # issue a redirect for any object requests.
195 RewriteRule ^/redir-objects/(.*/info/refs)$ /dumb/$1 [PT]
196 RewriteRule ^/redir-objects/(.*/objects/.*)$ /dumb/$1 [R=301]
197
198 <IfDefine SSL>
199 LoadModule ssl_module modules/mod_ssl.so
200
201 SSLCertificateFile httpd.pem
202 SSLCertificateKeyFile httpd.pem
203 SSLRandomSeed startup file:/dev/urandom 512
204 SSLRandomSeed connect file:/dev/urandom 512
205 SSLSessionCache none
206 SSLEngine On
207 </IfDefine>
208
209 <Location /auth/>
210 AuthType Basic
211 AuthName "git-auth"
212 AuthUserFile passwd
213 Require valid-user
214 </Location>
215
216 <LocationMatch "^/auth-push/.*/git-receive-pack$">
217 AuthType Basic
218 AuthName "git-auth"
219 AuthUserFile passwd
220 Require valid-user
221 </LocationMatch>
222
223 <LocationMatch "^/auth-fetch/.*/git-upload-pack$">
224 AuthType Basic
225 AuthName "git-auth"
226 AuthUserFile passwd
227 Require valid-user
228 </LocationMatch>
229
230 RewriteCond %{QUERY_STRING} service=git-receive-pack [OR]
231 RewriteCond %{REQUEST_URI} /git-receive-pack$
232 RewriteRule ^/half-auth-complete/ - [E=AUTHREQUIRED:yes]
233
234 <Location /half-auth-complete/>
235 Order Deny,Allow
236 Deny from env=AUTHREQUIRED
237
238 AuthType Basic
239 AuthName "Git Access"
240 AuthUserFile passwd
241 Require valid-user
242 Satisfy Any
243 </Location>
244
245 <IfDefine DAV>
246 LoadModule dav_module modules/mod_dav.so
247 LoadModule dav_fs_module modules/mod_dav_fs.so
248
249 DAVLockDB DAVLock
250 <Location /dumb/>
251 Dav on
252 </Location>
253 <Location /auth/dumb>
254 Dav on
255 </Location>
256 </IfDefine>
257
258 <IfDefine SVN>
259 LoadModule dav_svn_module modules/mod_dav_svn.so
260
261 <Location /${LIB_HTTPD_SVN}>
262 DAV svn
263 SVNPath "${LIB_HTTPD_SVNPATH}"
264 </Location>
265 </IfDefine>