Infini-DL360: use wildcard certificate
This commit is contained in:
parent
2203788b2d
commit
8ab1fe878b
13 changed files with 34 additions and 21 deletions
|
@ -6,17 +6,25 @@
|
|||
domain = "inx.moe";
|
||||
subdomain = subdomain: "${subdomain}.${domain}";
|
||||
|
||||
nginx = rec {
|
||||
ssl-cert = {
|
||||
nginx = {
|
||||
ssl-optional = {
|
||||
enableACME = true;
|
||||
acmeRoot = null;
|
||||
};
|
||||
ssl-optional = ssl-cert // {
|
||||
addSSL = true;
|
||||
};
|
||||
ssl = ssl-cert // {
|
||||
ssl = {
|
||||
enableACME = true;
|
||||
acmeRoot = null;
|
||||
forceSSL = true;
|
||||
};
|
||||
ssl-inx = {
|
||||
useACMEHost = domain;
|
||||
forceSSL = true;
|
||||
};
|
||||
ssl-inx-optional = {
|
||||
useACMEHost = domain;
|
||||
addSSL = true;
|
||||
};
|
||||
};
|
||||
|
||||
rsyncnet = rec {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue