trouble shooting onlyoffice webserver

This commit is contained in:
naturallaw77 2023-06-13 21:08:57 -07:00
parent 926b0a9816
commit ebe26ca14b
2 changed files with 6 additions and 2 deletions

View File

@ -400,8 +400,9 @@ backup /etc/nix-bitcoin-secrets/ localhost/
####### Open ports in the firewall #######
networking.firewall.allowedTCPPorts = [ 80 443 5349 8448 3050 3051 9443 9080 ];
networking.firewall.allowedUDPPorts = [ 80 443 5349 8448 3050 3051 9443 9080 ];
networking.firewall.allowedTCPPorts = [ 80 443 5349 8448 3050 3051 9443 9080 8100 8000 ];
networking.firewall.allowedUDPPorts = [ 80 443 5349 8448 3050 3051 9443 9080 8100 8000
];
networking.firewall.allowedUDPPortRanges = [
{ from=49152; to=65535; } # TURN relay
];

View File

@ -7,6 +7,9 @@ let
services.onlyoffice = {
enable = true;
hostname = "${personalization.onlyoffice_url}";
examplePort = 8100;
enableExampleServer = true;
};
services.nginx.defaultSSLListenPort = 9443;