4 LogFormat "%h %l %u %t \"%r\" %>s %b" common
5 CustomLog access.log common
7 <IfModule !mod_log_config.c>
8 LoadModule log_config_module modules/mod_log_config.so
10 <IfModule !mod_alias.c>
11 LoadModule alias_module modules/mod_alias.so
14 LoadModule cgi_module modules/mod_cgi.so
17 LoadModule env_module modules/mod_env.so
19 <IfModule !mod_rewrite.c>
20 LoadModule rewrite_module modules/mod_rewrite.so
22 <IfModule !mod_version.c>
23 LoadModule version_module modules/mod_version.so
25 <IfModule !mod_headers.c>
26 LoadModule headers_module modules/mod_headers.so
34 <IfModule !mod_auth.c>
35 LoadModule auth_module modules/mod_auth.so
40 <IfModule !mod_auth_basic.c>
41 LoadModule auth_basic_module modules/mod_auth_basic.so
43 <IfModule !mod_authn_file.c>
44 LoadModule authn_file_module modules/mod_authn_file.so
46 <IfModule !mod_authz_user.c>
47 LoadModule authz_user_module modules/mod_authz_user.so
49 <IfModule !mod_authz_host.c>
50 LoadModule authz_host_module modules/mod_authz_host.so
55 <IfModule !mod_authn_core.c>
56 LoadModule authn_core_module modules/mod_authn_core.so
58 <IfModule !mod_authz_core.c>
59 LoadModule authz_core_module modules/mod_authz_core.so
61 <IfModule !mod_access_compat.c>
62 LoadModule access_compat_module modules/mod_access_compat.so
64 <IfModule !mod_mpm_prefork.c>
65 LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
67 <IfModule !mod_unixd.c>
68 LoadModule unixd_module modules/mod_unixd.so
73 PassEnv GIT_VALGRIND_OPTIONS
77 PassEnv GIT_CONFIG_NOSYSTEM
80 Alias /auth/dumb/ www/auth/dumb/
82 <LocationMatch /smart/>
83 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
84 SetEnv GIT_HTTP_EXPORT_ALL
86 <LocationMatch /smart_noexport/>
87 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
89 <LocationMatch /smart_custom_env/>
90 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
91 SetEnv GIT_HTTP_EXPORT_ALL
92 SetEnv GIT_COMMITTER_NAME "Custom User"
93 SetEnv GIT_COMMITTER_EMAIL custom@example.com
95 <LocationMatch /smart_namespace/>
96 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
97 SetEnv GIT_HTTP_EXPORT_ALL
98 SetEnv GIT_NAMESPACE ns
100 <LocationMatch /smart_cookies/>
101 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
102 SetEnv GIT_HTTP_EXPORT_ALL
103 Header set Set-Cookie name=value
105 <LocationMatch /smart_headers/>
106 SetEnv GIT_EXEC_PATH ${GIT_EXEC_PATH}
107 SetEnv GIT_HTTP_EXPORT_ALL
109 ScriptAliasMatch /smart_*[^/]*/(.*) ${GIT_EXEC_PATH}/git-http-backend/$1
110 ScriptAlias /broken_smart/ broken-smart-http.sh/
111 ScriptAlias /error/ error.sh/
112 <Directory ${GIT_EXEC_PATH}>
113 Options FollowSymlinks
115 <Files broken-smart-http.sh>
121 <Files ${GIT_EXEC_PATH}/git-http-backend>
126 RewriteRule ^/dumb-redir/(.*)$ /dumb/$1 [R=301]
127 RewriteRule ^/smart-redir-perm/(.*)$ /smart/$1 [R=301]
128 RewriteRule ^/smart-redir-temp/(.*)$ /smart/$1 [R=302]
129 RewriteRule ^/smart-redir-auth/(.*)$ /auth/smart/$1 [R=301]
130 RewriteRule ^/smart-redir-limited/(.*)/info/refs$ /smart/$1/info/refs [R=301]
131 RewriteRule ^/ftp-redir/(.*)$ ftp://localhost:1000/$1 [R=302]
133 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]
134 RewriteRule ^/loop-redir/(.*)$ /loop-redir/x-$1 [R=302]
136 # The first rule issues a client-side redirect to something
137 # that _doesn't_ look like a git repo. The second rule is a
138 # server-side rewrite, so that it turns out the odd-looking
139 # thing _is_ a git repo. The "[PT]" tells Apache to match
140 # the usual ScriptAlias rules for /smart.
141 RewriteRule ^/insane-redir/(.*)$ /intern-redir/$1/foo [R=301]
142 RewriteRule ^/intern-redir/(.*)/foo$ /smart/$1 [PT]
144 # Serve info/refs internally without redirecting, but
145 # issue a redirect for any object requests.
146 RewriteRule ^/redir-objects/(.*/info/refs)$ /dumb/$1 [PT]
147 RewriteRule ^/redir-objects/(.*/objects/.*)$ /dumb/$1 [R=301]
149 # Apache 2.2 does not understand <RequireAll>, so we use RewriteCond.
150 # And as RewriteCond does not allow testing for non-matches, we match
151 # the desired case first (one has abra, two has cadabra), and let it
152 # pass by marking the RewriteRule as [L], "last rule, do not process
153 # any other matching RewriteRules after this"), and then have another
154 # RewriteRule that matches all other cases and lets them fail via '[F]',
155 # "fail the request".
156 RewriteCond %{HTTP:x-magic-one} =abra
157 RewriteCond %{HTTP:x-magic-two} =cadabra
158 RewriteRule ^/smart_headers/.* - [L]
159 RewriteRule ^/smart_headers/.* - [F]
162 LoadModule ssl_module modules/mod_ssl.so
164 SSLCertificateFile httpd.pem
165 SSLCertificateKeyFile httpd.pem
166 SSLRandomSeed startup file:/dev/urandom 512
167 SSLRandomSeed connect file:/dev/urandom 512
169 SSLMutex file:ssl_mutex
180 <LocationMatch "^/auth-push/.*/git-receive-pack$">
187 <LocationMatch "^/auth-fetch/.*/git-upload-pack$">
194 RewriteCond %{QUERY_STRING} service=git-receive-pack [OR]
195 RewriteCond %{REQUEST_URI} /git-receive-pack$
196 RewriteRule ^/half-auth-complete/ - [E=AUTHREQUIRED:yes]
198 <Location /half-auth-complete/>
200 Deny from env=AUTHREQUIRED
203 AuthName "Git Access"
210 LoadModule dav_module modules/mod_dav.so
211 LoadModule dav_fs_module modules/mod_dav_fs.so
217 <Location /auth/dumb>
223 LoadModule dav_svn_module modules/mod_dav_svn.so
225 <Location /${LIB_HTTPD_SVN}>
227 SVNPath "${LIB_HTTPD_SVNPATH}"