setup if3 subdomain
This commit is contained in:
parent
22dda9ea96
commit
8d79779032
2 changed files with 32 additions and 5 deletions
|
@ -1,12 +1,27 @@
|
||||||
{secrets, ...}: {
|
{
|
||||||
|
secrets,
|
||||||
|
if3,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
services.caddy = {
|
services.caddy = {
|
||||||
enable = true;
|
enable = true;
|
||||||
inherit (secrets.caddy_config) email;
|
inherit (secrets.caddy_config) email;
|
||||||
|
|
||||||
virtualHosts."proofs.adtya.xyz" = {
|
virtualHosts = {
|
||||||
extraConfig = ''
|
"proofs.adtya.xyz" = {
|
||||||
redir https://keyoxide.org/hkp/${secrets.users.primary.pgpFingerprint}
|
extraConfig = ''
|
||||||
'';
|
redir https://keyoxide.org/hkp/${secrets.users.primary.pgpFingerprint}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
"if3.adtya.xyz" = {
|
||||||
|
extraConfig = ''
|
||||||
|
root * ${if3.packages.web}/share/web
|
||||||
|
encode gzip
|
||||||
|
try_files {path} /index.html
|
||||||
|
file_server
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,6 +57,18 @@ in {
|
||||||
custom_domains = "proofs.adtya.xyz";
|
custom_domains = "proofs.adtya.xyz";
|
||||||
local_port = 443;
|
local_port = 443;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"http.if3.adtya.xyz" = {
|
||||||
|
type = "http";
|
||||||
|
custom_domains = "if3.adtya.xyz";
|
||||||
|
local_port = 80;
|
||||||
|
};
|
||||||
|
|
||||||
|
"https.if3.adtya.xyz" = {
|
||||||
|
type = "https";
|
||||||
|
custom_domains = "if3.adtya.xyz";
|
||||||
|
local_port = 443;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue