24 lines
487 B
Plaintext
24 lines
487 B
Plaintext
ScriptAlias /cgit/ "/usr/lib/cgit/cgit.cgi/"
|
|
|
|
Alias /cgit-css "/usr/share/webapps/cgit/"
|
|
|
|
<Directory "/usr/share/webapps/cgit/">
|
|
AllowOverride None
|
|
Options None
|
|
Require all granted
|
|
AuthType Basic
|
|
AuthName cgit
|
|
AuthUserFile /etc/httpd/conf/passwd
|
|
Require user root
|
|
</Directory>
|
|
|
|
<Directory "/usr/lib/cgit/">
|
|
AllowOverride None
|
|
Options ExecCGI FollowSymlinks
|
|
Require all granted
|
|
AuthType Basic
|
|
AuthName cgit
|
|
AuthUserFile /etc/httpd/conf/passwd
|
|
Require user root
|
|
</Directory>
|