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,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
||||
# letsencrypt
|
||||
security.acme = {
|
||||
acceptTerms = true;
|
||||
defaults = {
|
||||
email = "chris@toph.cc";
|
||||
dnsProvider = "cloudflare";
|
||||
environmentFile = ./cloudflare.ini;
|
||||
};
|
||||
certs = {
|
||||
"ryot.foo" = {
|
||||
extraDomainNames = ["*.ryot.foo"];
|
||||
};
|
||||
};
|
||||
# letsencrypt
|
||||
security.acme = {
|
||||
acceptTerms = true;
|
||||
defaults = {
|
||||
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