1ServerName dummy
2PidFile httpd.pid
3DocumentRoot www
4LogFormat "%h %l %u %t \"%r\" %>s %b" common
5CustomLog access.log common
6ErrorLog 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
29<IfVersion < 2.4>
30LockFile accept.lock
31</IfVersion>
32
33<IfVersion < 2.1>
34<IfModule !mod_auth.c>
35 LoadModule auth_module modules/mod_auth.so
36</IfModule>
37</IfVersion>
38
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>
53
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<IfModule !mod_setenvif.c>
71 LoadModule setenvif_module modules/mod_setenvif.so
72</IfModule>
73</IfVersion>
74
75PassEnv GIT_VALGRIND
76PassEnv GIT_VALGRIND_OPTIONS
77PassEnv GNUPGHOME
78PassEnv ASAN_OPTIONS
79PassEnv GIT_TRACE
80PassEnv GIT_CONFIG_NOSYSTEM
81
82<IfVersion >= 2.4>
83 SetEnvIf Git-Protocol ".*" GIT_PROTOCOL=$0
84</IfVersion>
85
86Alias /dumb/ www/
87Alias /auth/dumb/ www/auth/dumb/
88
89<LocationMatch /smart/>
90 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
91 SetEnv GIT_HTTP_EXPORT_ALL
92</LocationMatch>
93<LocationMatch /smart_noexport/>
94 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
95</LocationMatch>
96<LocationMatch /smart_custom_env/>
97 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
98 SetEnv GIT_HTTP_EXPORT_ALL
99 SetEnv GIT_COMMITTER_NAME "Custom User"
100 SetEnv GIT_COMMITTER_EMAIL custom@example.com
101</LocationMatch>
102<LocationMatch /smart_namespace/>
103 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
104 SetEnv GIT_HTTP_EXPORT_ALL
105 SetEnv GIT_NAMESPACE ns
106</LocationMatch>
107<LocationMatch /smart_cookies/>
108 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
109 SetEnv GIT_HTTP_EXPORT_ALL
110 Header set Set-Cookie name=value
111</LocationMatch>
112<LocationMatch /smart_headers/>
113 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
114 SetEnv GIT_HTTP_EXPORT_ALL
115</LocationMatch>
116ScriptAliasMatch /smart_*[^/]*/(.*) ${GIT_EXEC_PATH}/git-http-backend/$1
117ScriptAlias /broken_smart/ broken-smart-http.sh/
118ScriptAlias /error/ error.sh/
119<Directory ${GIT_EXEC_PATH}>
120 Options FollowSymlinks
121</Directory>
122<Files broken-smart-http.sh>
123 Options ExecCGI
124</Files>
125<Files error.sh>
126 Options ExecCGI
127</Files>
128<Files ${GIT_EXEC_PATH}/git-http-backend>
129 Options ExecCGI
130</Files>
131
132RewriteEngine on
133RewriteRule ^/dumb-redir/(.*)$ /dumb/$1 [R=301]
134RewriteRule ^/smart-redir-perm/(.*)$ /smart/$1 [R=301]
135RewriteRule ^/smart-redir-temp/(.*)$ /smart/$1 [R=302]
136RewriteRule ^/smart-redir-auth/(.*)$ /auth/smart/$1 [R=301]
137RewriteRule ^/smart-redir-limited/(.*)/info/refs$ /smart/$1/info/refs [R=301]
138RewriteRule ^/ftp-redir/(.*)$ ftp://localhost:1000/$1 [R=302]
139
140RewriteRule ^/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]
141RewriteRule ^/loop-redir/(.*)$ /loop-redir/x-$1 [R=302]
142
143# redir-to/502/x?y -> really-redir-to?path=502/x&qs=y which returns 502
144# redir-to/x?y -> really-redir-to?path=x&qs=y -> x?y
145RewriteCond %{QUERY_STRING} ^(.*)$
146RewriteRule ^/redir-to/(.*)$ /really-redir-to?path=$1&qs=%1 [R=302]
147RewriteCond %{QUERY_STRING} ^path=502/(.*)&qs=(.*)$
148RewriteRule ^/really-redir-to$ - [R=502,L]
149RewriteCond %{QUERY_STRING} ^path=(.*)&qs=(.*)$
150RewriteRule ^/really-redir-to$ /%1?%2 [R=302]
151
152# The first rule issues a client-side redirect to something
153# that _doesn't_ look like a git repo. The second rule is a
154# server-side rewrite, so that it turns out the odd-looking
155# thing _is_ a git repo. The "[PT]" tells Apache to match
156# the usual ScriptAlias rules for /smart.
157RewriteRule ^/insane-redir/(.*)$ /intern-redir/$1/foo [R=301]
158RewriteRule ^/intern-redir/(.*)/foo$ /smart/$1 [PT]
159
160# Serve info/refs internally without redirecting, but
161# issue a redirect for any object requests.
162RewriteRule ^/redir-objects/(.*/info/refs)$ /dumb/$1 [PT]
163RewriteRule ^/redir-objects/(.*/objects/.*)$ /dumb/$1 [R=301]
164
165# Apache 2.2 does not understand <RequireAll>, so we use RewriteCond.
166# And as RewriteCond does not allow testing for non-matches, we match
167# the desired case first (one has abra, two has cadabra), and let it
168# pass by marking the RewriteRule as [L], "last rule, do not process
169# any other matching RewriteRules after this"), and then have another
170# RewriteRule that matches all other cases and lets them fail via '[F]',
171# "fail the request".
172RewriteCond %{HTTP:x-magic-one} =abra
173RewriteCond %{HTTP:x-magic-two} =cadabra
174RewriteRule ^/smart_headers/.* - [L]
175RewriteRule ^/smart_headers/.* - [F]
176
177<IfDefine SSL>
178LoadModule ssl_module modules/mod_ssl.so
179
180SSLCertificateFile httpd.pem
181SSLCertificateKeyFile httpd.pem
182SSLRandomSeed startup file:/dev/urandom 512
183SSLRandomSeed connect file:/dev/urandom 512
184SSLSessionCache none
185SSLMutex file:ssl_mutex
186SSLEngine On
187</IfDefine>
188
189<Location /auth/>
190 AuthType Basic
191 AuthName "git-auth"
192 AuthUserFile passwd
193 Require valid-user
194</Location>
195
196<LocationMatch "^/auth-push/.*/git-receive-pack$">
197 AuthType Basic
198 AuthName "git-auth"
199 AuthUserFile passwd
200 Require valid-user
201</LocationMatch>
202
203<LocationMatch "^/auth-fetch/.*/git-upload-pack$">
204 AuthType Basic
205 AuthName "git-auth"
206 AuthUserFile passwd
207 Require valid-user
208</LocationMatch>
209
210RewriteCond %{QUERY_STRING} service=git-receive-pack [OR]
211RewriteCond %{REQUEST_URI} /git-receive-pack$
212RewriteRule ^/half-auth-complete/ - [E=AUTHREQUIRED:yes]
213
214<Location /half-auth-complete/>
215 Order Deny,Allow
216 Deny from env=AUTHREQUIRED
217
218 AuthType Basic
219 AuthName "Git Access"
220 AuthUserFile passwd
221 Require valid-user
222 Satisfy Any
223</Location>
224
225<IfDefine DAV>
226 LoadModule dav_module modules/mod_dav.so
227 LoadModule dav_fs_module modules/mod_dav_fs.so
228
229 DAVLockDB DAVLock
230 <Location /dumb/>
231 Dav on
232 </Location>
233 <Location /auth/dumb>
234 Dav on
235 </Location>
236</IfDefine>
237
238<IfDefine SVN>
239 LoadModule dav_svn_module modules/mod_dav_svn.so
240
241 <Location /${LIB_HTTPD_SVN}>
242 DAV svn
243 SVNPath "${LIB_HTTPD_SVNPATH}"
244 </Location>
245</IfDefine>