ae3d3d1ff4
Change-Id: Id76bfa2b269591b6c125b31584542962d32fb048
58 lines
1.9 KiB
Plaintext
58 lines
1.9 KiB
Plaintext
<VirtualHost *:<%= scope.lookupvar("cgit::http_port") %>>
|
|
ServerName <%= scope.lookupvar("cgit::vhost_name") %>
|
|
ServerAdmin <%= scope.lookupvar("cgit::serveradmin") %>
|
|
|
|
Alias /cgit-data /usr/share/cgit
|
|
ScriptAlias /cgit /var/www/cgi-bin/cgit
|
|
Alias /static <%= scope.lookupvar("cgit::staticfiles") %>
|
|
RewriteEngine On
|
|
RewriteRule ^/$ /cgit [R]
|
|
|
|
SetEnv GIT_PROJECT_ROOT /var/lib/git/
|
|
SetEnv GIT_HTTP_EXPORT_ALL
|
|
SetEnv GIT_NOTES_DISPLAY_REF refs/notes/*
|
|
|
|
AliasMatch ^/(.*/objects/[0-9a-f]{2}/[0-9a-f]{38})$ /var/lib/git/$1
|
|
AliasMatch ^/(.*/objects/pack/pack-[0-9a-f]{40}.(pack|idx))$ /var/lib/git/$1
|
|
ScriptAlias / /usr/libexec/git-core/git-http-backend/
|
|
|
|
ErrorLog /var/log/httpd/git-error.log
|
|
|
|
LogLevel warn
|
|
|
|
CustomLog /var/log/httpd/git-access.log combined
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:<%= scope.lookupvar("cgit::https_port") %>>
|
|
ServerName <%= scope.lookupvar("cgit::vhost_name") %>
|
|
ServerAdmin <%= scope.lookupvar("cgit::serveradmin") %>
|
|
|
|
Alias /cgit-data /usr/share/cgit
|
|
ScriptAlias /cgit /var/www/cgi-bin/cgit
|
|
Alias /static <%= scope.lookupvar("cgit::staticfiles") %>
|
|
RewriteEngine On
|
|
RewriteRule ^/$ /cgit [R]
|
|
|
|
SetEnv GIT_PROJECT_ROOT /var/lib/git/
|
|
SetEnv GIT_HTTP_EXPORT_ALL
|
|
SetEnv GIT_NOTES_DISPLAY_REF refs/notes/*
|
|
|
|
AliasMatch ^/(.*/objects/[0-9a-f]{2}/[0-9a-f]{38})$ /var/lib/git/$1
|
|
AliasMatch ^/(.*/objects/pack/pack-[0-9a-f]{40}.(pack|idx))$ /var/lib/git/$1
|
|
ScriptAlias / /usr/libexec/git-core/git-http-backend/
|
|
|
|
ErrorLog /var/log/httpd/git-error.log
|
|
|
|
LogLevel warn
|
|
|
|
CustomLog /var/log/httpd/git-access.log combined
|
|
|
|
SSLEngine on
|
|
|
|
SSLCertificateFile <%= scope.lookupvar("cgit::ssl_cert_file") %>
|
|
SSLCertificateKeyFile <%= scope.lookupvar("cgit::ssl_key_file") %>
|
|
<% if scope.lookupvar("cgit::ssl_chain_file") != "" %>
|
|
SSLCertificateChainFile <%= scope.lookupvar("cgit::ssl_chain_file") %>
|
|
<% end %>
|
|
</VirtualHost>
|