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</IfVersion>
71
72PassEnv GIT_VALGRIND
73PassEnv GIT_VALGRIND_OPTIONS
74PassEnv GNUPGHOME
75PassEnv ASAN_OPTIONS
76PassEnv GIT_TRACE
77
78Alias /dumb/ www/
79Alias /auth/dumb/ www/auth/dumb/
80
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>
108ScriptAliasMatch /smart_*[^/]*/(.*) ${GIT_EXEC_PATH}/git-http-backend/$1
109ScriptAlias /broken_smart/ broken-smart-http.sh/
110ScriptAlias /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>
123
124RewriteEngine on
125RewriteRule ^/smart-redir-perm/(.*)$ /smart/$1 [R=301]
126RewriteRule ^/smart-redir-temp/(.*)$ /smart/$1 [R=302]
127RewriteRule ^/smart-redir-auth/(.*)$ /auth/smart/$1 [R=301]
128RewriteRule ^/smart-redir-limited/(.*)/info/refs$ /smart/$1/info/refs [R=301]
129RewriteRule ^/ftp-redir/(.*)$ ftp://localhost:1000/$1 [R=302]
130
131RewriteRule ^/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]
132RewriteRule ^/loop-redir/(.*)$ /loop-redir/x-$1 [R=302]
133
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".
141RewriteCond %{HTTP:x-magic-one} =abra
142RewriteCond %{HTTP:x-magic-two} =cadabra
143RewriteRule ^/smart_headers/.* - [L]
144RewriteRule ^/smart_headers/.* - [F]
145
146<IfDefine SSL>
147LoadModule ssl_module modules/mod_ssl.so
148
149SSLCertificateFile httpd.pem
150SSLCertificateKeyFile httpd.pem
151SSLRandomSeed startup file:/dev/urandom 512
152SSLRandomSeed connect file:/dev/urandom 512
153SSLSessionCache none
154SSLMutex file:ssl_mutex
155SSLEngine On
156</IfDefine>
157
158<Location /auth/>
159 AuthType Basic
160 AuthName "git-auth"
161 AuthUserFile passwd
162 Require valid-user
163</Location>
164
165<LocationMatch "^/auth-push/.*/git-receive-pack$">
166 AuthType Basic
167 AuthName "git-auth"
168 AuthUserFile passwd
169 Require valid-user
170</LocationMatch>
171
172<LocationMatch "^/auth-fetch/.*/git-upload-pack$">
173 AuthType Basic
174 AuthName "git-auth"
175 AuthUserFile passwd
176 Require valid-user
177</LocationMatch>
178
179RewriteCond %{QUERY_STRING} service=git-receive-pack [OR]
180RewriteCond %{REQUEST_URI} /git-receive-pack$
181RewriteRule ^/half-auth-complete/ - [E=AUTHREQUIRED:yes]
182
183<Location /half-auth-complete/>
184 Order Deny,Allow
185 Deny from env=AUTHREQUIRED
186
187 AuthType Basic
188 AuthName "Git Access"
189 AuthUserFile passwd
190 Require valid-user
191 Satisfy Any
192</Location>
193
194<IfDefine DAV>
195 LoadModule dav_module modules/mod_dav.so
196 LoadModule dav_fs_module modules/mod_dav_fs.so
197
198 DAVLockDB DAVLock
199 <Location /dumb/>
200 Dav on
201 </Location>
202 <Location /auth/dumb>
203 Dav on
204 </Location>
205</IfDefine>
206
207<IfDefine SVN>
208 LoadModule dav_svn_module modules/mod_dav_svn.so
209
210 <Location /svn>
211 DAV svn
212 SVNPath svnrepo
213 </Location>
214</IfDefine>