2021-11-14 23:56:00 +01:00
|
|
|
{ ... }:
|
|
|
|
let
|
|
|
|
port = 3000;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
services.hedgedoc = {
|
|
|
|
enable = true;
|
|
|
|
configuration = {
|
|
|
|
protocolUseSSL = true;
|
|
|
|
# scp =; # TODO
|
|
|
|
domain = "//docs.beta.rz.ens.wtf";
|
|
|
|
host = "localhost";
|
|
|
|
port = port;
|
|
|
|
db = {
|
|
|
|
dialect = "sqlite";
|
|
|
|
storage = "/var/lib/hedgedoc/db.hedgedoc.sqlite";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.nginx = {
|
|
|
|
virtualHosts = {
|
|
|
|
"docs.beta.rz.ens.wtf" = {
|
|
|
|
forceSSL = true;
|
|
|
|
enableACME = true;
|
|
|
|
locations = {
|
|
|
|
"/" = {
|
|
|
|
proxyPass = "http://localhost:${toString port}";
|
2021-11-15 00:48:11 +01:00
|
|
|
proxyWebsockets = true;
|
2021-11-14 23:56:00 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.firewall.allowedTCPPorts = [ 433 80 ];
|
|
|
|
}
|