Added all my domains to acme
This commit is contained in:
parent
fb2f410e89
commit
27790e446c
1 changed files with 37 additions and 16 deletions
|
@ -1,18 +1,39 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
{
|
{
|
||||||
|
config,
|
||||||
# letsencrypt
|
lib,
|
||||||
security.acme = {
|
pkgs,
|
||||||
acceptTerms = true;
|
...
|
||||||
defaults = {
|
}:
|
||||||
email = "chris@toph.cc";
|
{
|
||||||
dnsProvider = "cloudflare";
|
|
||||||
environmentFile = ./cloudflare.ini;
|
# letsencrypt
|
||||||
};
|
security.acme = {
|
||||||
certs = {
|
acceptTerms = true;
|
||||||
"ryot.foo" = {
|
defaults = {
|
||||||
extraDomainNames = ["*.ryot.foo"];
|
email = "chris@toph.cc";
|
||||||
};
|
dnsProvider = "cloudflare";
|
||||||
};
|
environmentFile = ./cloudflare.ini;
|
||||||
};
|
};
|
||||||
}
|
certs = {
|
||||||
|
"goldenlemon.cc" = {
|
||||||
|
extraDomainNames = [ "*.goldenlemon.cc" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
# "kwahson.com" = {
|
||||||
|
# extraDomainNames = [ "*.kwahson.com" ];
|
||||||
|
# };
|
||||||
|
|
||||||
|
# "kwahson.xyz" = {
|
||||||
|
# extraDomainNames = [ "*.kwahson.xyz" ];
|
||||||
|
# };
|
||||||
|
|
||||||
|
# "toph.cc" = {
|
||||||
|
# extraDomainNames = [ "*.toph.cc" ];
|
||||||
|
# };
|
||||||
|
|
||||||
|
"ryot.foo" = {
|
||||||
|
extraDomainNames = [ "*.ryot.foo" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue