14 lines
327 B
ObjectPascal
14 lines
327 B
ObjectPascal
|
# 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,
|
||
|
}
|
||
|
}
|