mirror of
https://github.com/zulip/docker-zulip.git
synced 2025-11-09 08:25:45 +00:00
54 lines
1.2 KiB
Puppet
54 lines
1.2 KiB
Puppet
class zulip::nginx {
|
|
$web_packages = [# Needed to run nginx with the modules we use
|
|
"nginx-full",
|
|
]
|
|
package { $web_packages: ensure => "installed" }
|
|
|
|
file { "/etc/nginx/zulip-include/":
|
|
require => Package["nginx-full"],
|
|
recurse => true,
|
|
owner => "root",
|
|
group => "root",
|
|
mode => 644,
|
|
source => "puppet:///modules/zulip/nginx/zulip-include-common/",
|
|
notify => Service["nginx"],
|
|
}
|
|
|
|
file { "/etc/nginx/nginx.conf":
|
|
require => Package["nginx-full"],
|
|
ensure => file,
|
|
owner => "root",
|
|
group => "root",
|
|
mode => 644,
|
|
notify => Service["nginx"],
|
|
source => "puppet:///modules/zulip/nginx/nginx.conf",
|
|
}
|
|
|
|
file { "/etc/nginx/fastcgi_params":
|
|
require => Package["nginx-full"],
|
|
ensure => file,
|
|
owner => "root",
|
|
group => "root",
|
|
mode => 644,
|
|
notify => Service["nginx"],
|
|
source => "puppet:///modules/zulip/nginx/fastcgi_params",
|
|
}
|
|
|
|
file { "/etc/nginx/sites-enabled/default":
|
|
notify => Service["nginx"],
|
|
ensure => absent,
|
|
}
|
|
|
|
file { '/var/log/nginx':
|
|
ensure => "directory",
|
|
owner => "zulip",
|
|
group => "adm",
|
|
mode => 650
|
|
}
|
|
|
|
service { 'nginx':
|
|
ensure => running,
|
|
}
|
|
}
|
|
|