Initial commit
This commit is contained in:
27
nixos-apps/fancytypist.com.nix
Normal file
27
nixos-apps/fancytypist.com.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
services.caddy = {
|
||||
enable = true;
|
||||
virtualHosts = {
|
||||
"fancytypist.com" = {
|
||||
serverAliases = [ "www.fancytypist.com" ];
|
||||
extraConfig = ''
|
||||
respond "Hello, world! fancytypist.com"
|
||||
'';
|
||||
};
|
||||
|
||||
"fancytypist.ca" = {
|
||||
serverAliases = [ "www.fancytypist.ca" ];
|
||||
extraConfig = ''
|
||||
respond "Hello, world! fancytypist.ca"
|
||||
'';
|
||||
};
|
||||
|
||||
"fancytypist.dev" = {
|
||||
serverAliases = [ "www.fancytypist.dev" ];
|
||||
extraConfig = ''
|
||||
respond "Hello, world! fancytypist.dev"
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user