mirror of
https://github.com/release-engineering/dist-git.git
synced 2025-02-23 23:12:55 +00:00
20 lines
528 B
Text
20 lines
528 B
Text
<VirtualHost _default_:80>
|
|
# This alias must come before the /repo/ one to avoid being overridden.
|
|
ScriptAlias /repo/pkgs/upload.cgi /var/lib/dist-git/web/upload.cgi
|
|
|
|
Alias /repo/ /var/lib/dist-git/cache/lookaside/
|
|
|
|
ServerName pkgs.example.org
|
|
ServerAdmin webmaster@fedoraproject.org
|
|
|
|
LogLevel trace6
|
|
|
|
# provide this manually for upload.cgi
|
|
SetEnv SSL_CLIENT_S_DN_CN clime
|
|
|
|
<Location /repo/pkgs/upload.cgi>
|
|
Options +ExecCGI
|
|
Require all granted
|
|
</Location>
|
|
|
|
</VirtualHost>
|