29 lines
1.6 KiB
Django/Jinja
29 lines
1.6 KiB
Django/Jinja
<?php
|
|
|
|
//'welcome.html' => '<h1>Fedora QA Devel Phabricator</h1><p>The Fedora QA Devel team uses this phabricator instance for tracking issues, code reviews and some documentation. <ul><li>lists</li><li><a href="http://roshi.fedorapeople.org/dexy/">Links to docs</a></li><li>...</li></ul></p>',
|
|
return array(
|
|
'mysql.host' => '{{ mariadb_host }}',
|
|
'mysql.user' => '{{ mariadb_user }}',
|
|
'mysql.pass' => '{{ mariadb_password }}',
|
|
'log.access.path' => '/var/log/phabricator/access.log',
|
|
'log.ssh.path' => '/var/log/phabricator/ssh.log',
|
|
'phd.pid-directory' => '/var/run/phabricator/',
|
|
'phd.log-directory' => '/var/log/phabricator/',
|
|
'phd.user' => '{{ phabricator_daemon_user }}',
|
|
'environment.append-paths' => ['/usr/libexec/git-core/'],
|
|
'diffusion.ssh-user' => '{{ phabricator_vcs_user }}',
|
|
'welcome.html' => '{{ lookup("file", "phabricator-welcome.html") }}',
|
|
'ui.header-color' => '{{ phabricator_header_color }}',
|
|
'metamta.default-address' => 'phab@{{ external_hostname }}',
|
|
'metamta.domain' => '{{ external_hostname }}',
|
|
'metamta.reply-handler-domain' => '{{ external_hostname }}',
|
|
'metamta.mail-adapter' => '{{ 'PhabricatorMailImplementationPHPMailerLiteAdapter' if phabricator_mail_enabled else 'PhabricatorMailImplementationTestAdapter'}}',
|
|
'phabricator.uninstalled-applications' => array(
|
|
'PhabricatorApplicationPhame' => true,
|
|
'PhabricatorApplicationDiviner' => true,
|
|
'PhabricatorApplicationLegalpad' => true,
|
|
'PhabricatorApplicationDrydock' => true,
|
|
'PhabricatorApplicationHarbormaster' => true,
|
|
'PhabricatorApplicationOAuthServer' => true,
|
|
'PhabricatorApplicationPhortune' => true)
|
|
);
|