fixing the correct variables, returning to underscore in var name
This commit is contained in:
parent
5d48d0b4e2
commit
7448986cd5
3 changed files with 6 additions and 6 deletions
|
@ -20,7 +20,7 @@ virt_install_command: /usr/bin/virt-install -n {{ inventory_hostname }} -r {{ me
|
|||
--network=bridge=br0,model=virtio --autostart --noautoconsole
|
||||
|
||||
sshd_config: ssh/sshd_config.qadevel
|
||||
externalhostname: qadevel-stg.qa.fedoraproject.org
|
||||
external_hostname: qadevel-stg.qa.fedoraproject.org
|
||||
|
||||
mariadb_host: db-qa01.qa.fedoraproject.org
|
||||
mariadb_user: '{{ qadevel_stg_mariadb_user }}'
|
||||
|
|
|
@ -2,7 +2,7 @@ NameVirtualHost *:443
|
|||
|
||||
<VirtualHost *:443>
|
||||
# Change this to the domain which points to your host.
|
||||
ServerName phab.{{hostname}}
|
||||
ServerName phab.{{external_hostname}}
|
||||
|
||||
# Use separate log files for the SSL virtual host; note that LogLevel
|
||||
# is not inherited from httpd.conf.
|
||||
|
@ -72,7 +72,7 @@ NameVirtualHost *:443
|
|||
|
||||
<VirtualHost *:80>
|
||||
# Change this to the domain which points to your host.
|
||||
ServerName phab.{{hostname}}
|
||||
ServerName phab.{{external_hostname}}
|
||||
|
||||
RewriteEngine on
|
||||
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
|
||||
|
|
|
@ -14,9 +14,9 @@ return array(
|
|||
'diffusion.ssh-user' => '{{ phabricator_vcs_user }}',
|
||||
'welcome.html' => '{{ lookup("file", "phabricator-welcome.html") }}',
|
||||
'ui.header-color' => '{{ phabricator_header_color }}',
|
||||
'metamta.default-address' => 'phab@{{ externalhostname }}',
|
||||
'metamta.domain' => '{{ externalhostname }}',
|
||||
'metamta.reply-handler-domain' => '{{ externalhostname }}',
|
||||
'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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue