14 lines
No EOL
327 B
Puppet
14 lines
No EOL
327 B
Puppet
# A Class using the sunet::onlyoffice::doc resurce
|
|
class net::onlyoffice () {
|
|
$docserver = sunet::onlyoffice::docs { 'document_server': name => 'document_server' }
|
|
|
|
sunet::nftables::allow { 'allow-http':
|
|
from => any,
|
|
port => 80,
|
|
}
|
|
|
|
sunet::nftables::allow { 'allow-https':
|
|
from => any,
|
|
port => 443,
|
|
}
|
|
} |