10 lines
233 B
Puppet
10 lines
233 B
Puppet
# manage selinux for nginxproxy
|
|
class nginxproxy::selinux {
|
|
if $::facts['os']['selinux']['config_mode'] == 'enforcing' {
|
|
selboolean { 'httpd_can_network_connect':
|
|
persistent => true,
|
|
value => 'on',
|
|
}
|
|
}
|
|
}
|