2023-10-02 22:48:18 +02:00
|
|
|
{ config, ... }:
|
2023-09-24 15:47:29 +02:00
|
|
|
|
2024-02-02 10:51:31 +01:00
|
|
|
let
|
|
|
|
host = "docs.dgnum.eu";
|
|
|
|
in
|
|
|
|
{
|
2023-09-24 15:47:29 +02:00
|
|
|
services.outline = {
|
|
|
|
enable = true;
|
|
|
|
|
2023-10-05 23:27:04 +02:00
|
|
|
storage.storageType = "local";
|
2023-09-24 15:47:29 +02:00
|
|
|
|
|
|
|
smtp = {
|
|
|
|
username = "web-services@infra.dgnum.eu";
|
|
|
|
port = 465;
|
|
|
|
host = "kurisu.lahfa.xyz";
|
|
|
|
|
|
|
|
fromEmail = "docs@infra.dgnum.eu";
|
|
|
|
replyEmail = "web-services@infra.dgnum.eu";
|
|
|
|
passwordFile = config.age.secrets."outline-smtp_password_file".path;
|
|
|
|
};
|
|
|
|
|
|
|
|
redisUrl = "local";
|
|
|
|
publicUrl = "https://${host}";
|
|
|
|
|
|
|
|
oidcAuthentication = {
|
|
|
|
clientId = "outline_dgn";
|
|
|
|
authUrl = "https://sso.dgnum.eu/ui/oauth2";
|
|
|
|
tokenUrl = "https://sso.dgnum.eu/oauth2/token";
|
|
|
|
userinfoUrl = "https://sso.dgnum.eu/oauth2/openid/outline_dgn/userinfo";
|
|
|
|
displayName = "DGNum SSO";
|
|
|
|
|
2024-02-02 10:51:31 +01:00
|
|
|
clientSecretFile = config.age.secrets."outline-oidc_client_secret_file".path;
|
2023-09-24 15:47:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
defaultLanguage = "fr_FR";
|
|
|
|
|
|
|
|
forceHttps = false;
|
|
|
|
port = 3003;
|
|
|
|
};
|
|
|
|
|
|
|
|
services.nginx.virtualHosts.${host} = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
|
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "http://localhost:3003";
|
|
|
|
proxyWebsockets = true;
|
|
|
|
};
|
2023-12-10 20:50:40 +01:00
|
|
|
|
|
|
|
locations."/robots.txt" = {
|
|
|
|
return = ''200 "User-agent: *\nDisallow: /s/demarches-normaliennes/\n"'';
|
|
|
|
};
|
2023-09-24 15:47:29 +02:00
|
|
|
};
|
|
|
|
|
2024-02-19 14:47:27 +01:00
|
|
|
age-secrets.autoMatch = [ "outline" ];
|
2024-02-21 22:49:20 +01:00
|
|
|
|
|
|
|
dgn-backups.jobs.outline.settings.paths = [ "/var/lib/outline" ];
|
|
|
|
dgn-backups.postgresDatabases = [ "outline" ];
|
2023-09-24 15:47:29 +02:00
|
|
|
}
|