services: use subdomain for ACME cert
Avoids conflicts now that I have multiple servers sharing the config
This commit is contained in:
parent
baa239dc72
commit
990c035c3b
13 changed files with 72 additions and 18 deletions
|
|
@ -14,6 +14,8 @@
|
|||
cfg = config.my.services.paperless;
|
||||
my = config.my;
|
||||
domain = config.networking.domain;
|
||||
hostname = config.networking.hostName;
|
||||
fqdn = "${hostname}.${domain}";
|
||||
paperlessDomain = "paperless.${domain}";
|
||||
in {
|
||||
options.my.services.paperless = let
|
||||
|
|
@ -99,7 +101,7 @@ in {
|
|||
services.nginx.virtualHosts = {
|
||||
"${paperlessDomain}" = {
|
||||
forceSSL = true;
|
||||
useACMEHost = domain;
|
||||
useACMEHost = fqdn;
|
||||
|
||||
listen = [
|
||||
# FIXME: hardcoded tailscale IP
|
||||
|
|
@ -122,6 +124,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
security.acme.certs.${fqdn}.extraDomainNames = [paperlessDomain];
|
||||
|
||||
my.services.restic-backup = mkIf cfg.enable {
|
||||
paths = [
|
||||
config.services.paperless.dataDir
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue