HowToInstallRedmineOnUbuntuServer » hg.conf
| 1 |
PerlLoadModule Apache::Redmine |
|---|---|
| 2 |
ScriptAlias /hg "/var/hg/hgwebdir.cgi" |
| 3 |
<Location /hg > |
| 4 |
AuthType Basic |
| 5 |
AuthName "Mercurial" |
| 6 |
Require valid-user |
| 7 |
|
| 8 |
#Redmine auth
|
| 9 |
PerlAccessHandler Apache::Authn::Redmine::access_handler |
| 10 |
PerlAuthenHandler Apache::Authn::Redmine::authen_handler |
| 11 |
RedmineDSN "DBI:mysql:database=redmine;host=localhost" |
| 12 |
RedmineDbUser "redmine" |
| 13 |
RedmineDbPass "password" |
| 14 |
</Location>
|