Modify like, basically everything idk, probably a lot of secrets and url names and colmena and whatnot
This commit is contained in:
parent
0ab856b18e
commit
b3ba7481d8
107 changed files with 437 additions and 696 deletions
15
modules/system/services/server/hedgedoc/default.nix
Normal file
15
modules/system/services/server/hedgedoc/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
imports = [ ./nginx ];
|
||||
|
||||
services.hedgedoc.settings = {
|
||||
domain = "hedgedoc.${config.vars.primeDomain}";
|
||||
port = 8001;
|
||||
host = "127.0.0.1";
|
||||
protocolUseSSL = true;
|
||||
allowOrigin = [
|
||||
"localhost"
|
||||
config.services.hedgedoc.settings.domain
|
||||
];
|
||||
};
|
||||
}
|
11
modules/system/services/server/hedgedoc/nginx/default.nix
Normal file
11
modules/system/services/server/hedgedoc/nginx/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
services.nginx.virtualHosts."${config.services.hedgedoc.settings.domain}" = lib.mkIf config.services.hedgedoc.enable {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:${toString config.services.hedgedoc.settings.port}";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue