diff options
Diffstat (limited to 'modules/transifex/manifests')
-rw-r--r-- | modules/transifex/manifests/init.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/transifex/manifests/init.pp b/modules/transifex/manifests/init.pp index 844b7306..575872f8 100644 --- a/modules/transifex/manifests/init.pp +++ b/modules/transifex/manifests/init.pp @@ -61,6 +61,17 @@ class transifex { notify => Service['apache'] } + file { "50-apps.conf": + path => "/etc/transifex/50-apps.conf", + ensure => present, + owner => root, + group => root, + mode => 644, + content => template("transifex/50-apps.conf"), + require => Package['transifex'], + notify => Service['apache'] + } + apache::vhost_django_app { "transifex.$domain": module => "transifex", use_ssl => true, |