1 ## To convert this file to apache.conf using the current Girocco::Config values
2 ## either do "make" or "make apache.conf" or ./make-apache-conf.sh
4 # This is an example configuration of a virtualhost running Girocco, as set up
5 # at repo.or.cz; unfortunately, completely independent from Girocco::Config.
6 # It is not essential for Girocco to use a special virtualhost, however.
9 ServerName @@httpdnsname@@
10 ServerAlias www.@@httpdnsname@@
13 ErrorLog /var/log/apache2/repo-error.log
14 CustomLog /var/log/apache2/repo-access.log combined
16 AddHandler cgi-script .cgi
18 DocumentRoot @@webroot@@
19 <Directory @@webroot@@>
20 # Add MultiViews only if pages are truly
21 # offered in more than a single language
22 Options FollowSymLinks ExecCGI
26 DirectoryIndex gitweb.cgi
30 ScriptAlias /w @@cgiroot@@/gitweb.cgi
31 ScriptAlias /h @@cgiroot@@/html.cgi
33 <IfModule rewrite_module>
35 # Redirect bare /w requests without .git that name an existing repo...
36 RewriteCond @@reporoot@@/$1.git/HEAD -f
38 ^/w/((?:[a-zA-Z0-9+._-]+(?<!\.git)/)*[a-zA-Z0-9+._-]+(?<!\.git))/?$ \
41 # ...and also make the leading /w optional for those types of requests
42 RewriteCond %{HTTP_USER_AGENT} !git/ [NC]
43 RewriteCond @@reporoot@@/$1.git/HEAD -f
45 ^/(?!w/)((?:[a-zA-Z0-9+._-]+(?<!\.git)/)*[a-zA-Z0-9+._-]+(?<!\.git))/?$ \
48 # Make the leading /w optional if the rest names an existing repo
49 RewriteCond %{HTTP_USER_AGENT} !git/ [NC]
50 RewriteCond @@reporoot@@/$1/HEAD -f
51 # Might want to use [L,R] instead of [PT] maybe even [L,R=301]
53 ^/(?!w/)((?:[a-zA-Z0-9+._-]+(?<!\.git)/)*[a-zA-Z0-9+._-]+?\.git)((?:/.*)?)$ \
57 <Directory @@reporoot@@>
58 Options FollowSymLinks
64 <IfModule rewrite_module>
65 # Everything fetched over the non-smart git http
66 # protocol should be an existing file. If the request
67 # is not for an existing file, just send back an error
68 # message without emitting anything into the error log.
70 RewriteCond %{REQUEST_FILENAME} !-f
71 RewriteRule .* - [R=404,L]
75 <Directory @@basedir@@/bin>
80 <Files git-http-backend-verify>
87 SetEnv GIT_HTTP_EXPORT_ALL 1
89 # By default non-smart HTTP fetch access will be allowed, however
90 # by defining SmartHTTPOnly (or changing the sense of the IfDefine tests)
91 # non-smart HTTP requests can be denied directly by the web server
93 <IfDefine !SmartHTTPOnly>
94 # These accelerate non-smart HTTP access to loose objects and packs with the /r/ prefix
95 AliasMatch ^/r/(.*/objects/[0-9a-f]{2}/[0-9a-f]{38})$ @@reporoot@@/$1
96 AliasMatch ^/r/(.*/objects/pack/pack-[0-9a-f]{40}.(pack|idx))$ @@reporoot@@/$1
98 # These accelerate non-smart HTTP access for Git user agents without the /r/ prefix
99 <IfModule rewrite_module>
101 RewriteCond %{HTTP_USER_AGENT} git/ [NC]
102 RewriteRule "(?x) ^/((?!r/).*/objects/(?: \
103 (?:[0-9a-f]{2}/[0-9a-f]{38}) | \
104 (?:pack/pack-[0-9a-f]{40}.(?:pack|idx)) ))$" \
109 <IfDefine SmartHTTPOnly>
110 # Disable non-smart HTTP access
112 RewriteCond %{REQUEST_METHOD} !^POST$
113 RewriteRule ^/r/.*(?<!/info/refs)$ - [F]
114 RewriteCond %{REQUEST_URI} !^/authrequired[.]cgi$
115 RewriteCond %{HTTP_USER_AGENT} git/ [NC]
116 RewriteCond %{REQUEST_METHOD} !^POST$
117 RewriteRule ^/(?!r/).*(?<!/info/refs)$ - [F]
118 RewriteCond %{QUERY_STRING} !(^|&)service=git-(upload|receive)-pack(&|$)
119 RewriteRule ^/r/.*/info/refs$ - [F]
120 RewriteCond %{HTTP_USER_AGENT} git/ [NC]
121 RewriteCond %{QUERY_STRING} !(^|&)service=git-(upload|receive)-pack(&|$)
122 RewriteRule ^/(?!r/).*/info/refs$ - [F]
125 # SetEnv GIT_HTTP_BACKEND_BIN to override Config.pm $git_http_backend_bin
126 ScriptAlias /r/ @@basedir@@/bin/git-http-backend-verify/
128 # This allows HTTP access for Git user agents without the /r/ prefix
129 <IfModule rewrite_module>
131 RewriteCond %{REQUEST_URI} !^/authrequired[.]cgi$
132 RewriteCond %{HTTP_USER_AGENT} git/ [NC]
133 RewriteRule ^/(?!r/)(.*)$ \
134 @@basedir@@/bin/git-http-backend-verify/$1 \
140 # This comments out the following so this file can be used as-is
141 <IfDefine DummyThatIsNotDefined>
144 # This is an example configuration of an https virtualhost running Girocco, as set
145 # up at repo.or.cz; unfortunately, completely independent from Girocco::Config.
146 # It is not essential for Girocco to use a special virtualhost, however.
147 # The Config.pm $httpspushurl variable needs to be defined to properly enable
151 # These certificate files will all be automatically generated, but the
152 # paths here may need to be corrected to match the paths
153 # (especially $certsdir) from Config.pm
155 SSLCertificateFile @@certsdir@@/girocco_www_crt.pem
156 SSLCertificateKeyFile @@certsdir@@/girocco_www_key.pem
157 SSLCertificateChainFile @@certsdir@@/girocco_www_chain.pem
158 # when using a paid www server cert, only the above three lines should
159 # be changed. Changing any of the below two lines (other than updating
160 # the paths to match $certsdir) will likely break https client auth
161 SSLCACertificateFile @@certsdir@@/girocco_root_crt.pem
162 SSLCADNRequestFile @@certsdir@@/girocco_client_crt.pem
165 SSLOptions +FakeBasicAuth +StrictRequire
168 # This configuration allows fetching over https without a certificate
169 # while always requiring a certificate for pushing over https
171 SSLVerifyClient optional
172 RewriteCond %{QUERY_STRING} (^|&)service=git-receive-pack(&|$)
173 RewriteRule ^/r/.*/info/refs$ - [env=client_auth_required:1]
174 RewriteCond %{HTTP_USER_AGENT} git/ [NC]
175 RewriteCond %{QUERY_STRING} (^|&)service=git-receive-pack(&|$)
176 RewriteRule ^/(?!r/).*/info/refs$ - [env=client_auth_required:1]
177 RewriteRule ^/r/.*/git-receive-pack$ - [env=client_auth_required:1]
178 RewriteCond %{HTTP_USER_AGENT} git/ [NC]
179 RewriteRule ^/(?!r/).*/git-receive-pack$ - [env=client_auth_required:1]
180 RewriteCond %{ENV:client_auth_required} 1
181 RewriteCond %{SSL:SSL_CLIENT_VERIFY} !^SUCCESS$
182 RewriteRule .* %{REQUEST_URI} [R=401]
186 Deny from env=client_auth_required
187 SSLOptions +FakeBasicAuth
188 AuthName "Git Client Authentication"
190 AuthBasicProvider anon
195 ErrorDocument 401 /authrequired.cgi
199 # ALL the entire contents from the <VirtualHost *:80> section at
200 # the top of this file must be copied here.
202 # To avoid this duplication, the contents of the <VirtualHost *:80>
203 # section above can be moved to a separate file and then included
204 # both here and in the <VirtualHost *:80> section using an Include
205 # directive. Be careful not to place the new include file in one of the
206 # directories the standard apache configuration blindly includes all