feat: create a vanity URL for teh committee server
All checks were successful
Build_Deploy / linter (push) Successful in 19s
Build_Deploy / build (push) Successful in 53s
Build_Deploy / deploy_dns (push) Successful in 1m7s
Build_Deploy / deploy_active (active-core) (push) Successful in 2m15s
Build_Deploy / deploy_active (active) (push) Successful in 2m49s
Build_Deploy / deploy_active (active-ext) (push) Successful in 50s
All checks were successful
Build_Deploy / linter (push) Successful in 19s
Build_Deploy / build (push) Successful in 53s
Build_Deploy / deploy_dns (push) Successful in 1m7s
Build_Deploy / deploy_active (active-core) (push) Successful in 2m15s
Build_Deploy / deploy_active (active) (push) Successful in 2m49s
Build_Deploy / deploy_active (active-ext) (push) Successful in 50s
This commit is contained in:
parent
87469cc6c3
commit
51eab3faf8
1 changed files with 16 additions and 0 deletions
|
@ -25,6 +25,7 @@ in {
|
|||
services.skynet.acme.domains = [
|
||||
"www.skynet.ie"
|
||||
"discord.skynet.ie"
|
||||
"*.discord.skynet.ie"
|
||||
"public.skynet.ie"
|
||||
];
|
||||
|
||||
|
@ -50,6 +51,11 @@ in {
|
|||
r_type = "CNAME";
|
||||
value = config.services.skynet.host.name;
|
||||
}
|
||||
{
|
||||
record = "*.discord";
|
||||
r_type = "CNAME";
|
||||
value = config.services.skynet.host.name;
|
||||
}
|
||||
];
|
||||
|
||||
services.nginx = {
|
||||
|
@ -78,6 +84,16 @@ in {
|
|||
useACMEHost = "skynet";
|
||||
locations."/".return = "307 https://discord.gg/mkuKJkCuyM";
|
||||
};
|
||||
"compsoc.discord.skynet.ie" = {
|
||||
forceSSL = true;
|
||||
useACMEHost = "skynet";
|
||||
locations."/".return = "307 https://discord.gg/mkuKJkCuyM";
|
||||
};
|
||||
"committee.discord.skynet.ie" = {
|
||||
forceSSL = true;
|
||||
useACMEHost = "skynet";
|
||||
locations."/".return = "307 https://discord.gg/D6mbASJKxU";
|
||||
};
|
||||
|
||||
"public.skynet.ie" = {
|
||||
forceSSL = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue