This commit is contained in:
Nicolas Jeannerod 2024-09-20 18:51:21 +02:00
parent 6323e0adc8
commit 3bb9569eb4
Signed by: Niols
GPG key ID: 35DB9EC8886E1CB8
2 changed files with 12 additions and 0 deletions

View file

@ -100,4 +100,14 @@ in {
}; };
}; };
}; };
config = {
## FIXME: This should clearly go somewhere else; and we should have a
## `staging` vs. `production` setting somewhere.
security.acme = {
acceptTerms = true;
defaults.email = "nicolas.jeannerod+fediversity@moduscreate.com";
defaults.server = "https://acme-staging-v02.api.letsencrypt.org/directory";
};
};
} }

View file

@ -50,6 +50,8 @@ lib.mkIf (config.fediversity.enable && config.fediversity.pixelfed.enable) {
## ##
## TODO: If that indeed makes sense, upstream. ## TODO: If that indeed makes sense, upstream.
nginx = { nginx = {
forceSSL = true;
enableACME = true;
# locations."/public/".proxyPass = "${config.fediversity.internal.garage.web.urlFor "pixelfed"}/public/"; # locations."/public/".proxyPass = "${config.fediversity.internal.garage.web.urlFor "pixelfed"}/public/";
}; };
}; };