Apache config adjustments

Some quick adjustments to get phab to actually run.
This commit is contained in:
stephane 2015-04-02 17:06:09 -07:00
parent 6ffd68ae30
commit 545fbc9ba3
2 changed files with 8 additions and 3 deletions

View File

@ -140,16 +140,20 @@ class phabricator (
}
include apache
include apache::ssl
include apache::php
a2mod { 'rewrite':
ensure => present,
}
apache::vhost { $vhost_name:
port => 443,
docroot => "${instance_dir}/phabricator/webroot",
docroot => "${instance_dir}/phabricator/webroot/",
priority => '50',
template => 'phabricator/vhost.erb',
ssl => true,
require => File[$instance_dir],
}
}

View File

@ -11,7 +11,7 @@
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
Allow from all
</Directory>
RewriteEngine on
@ -49,7 +49,8 @@
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
Allow from all
Require all granted
</Directory>
RewriteEngine on