Compare commits
No commits in common. "d1bd4911412cf1570ce7b395616250375cbb2779" and "1a3b50e11d9a8a769d9e4f071ed13a1a16c4bdc0" have entirely different histories.
d1bd491141
...
1a3b50e11d
30
flake.nix
30
flake.nix
|
@ -6,22 +6,20 @@
|
|||
};
|
||||
|
||||
outputs = { self, nixpkgs, nixos-wsl }: {
|
||||
nixosConfigurations = {
|
||||
catacomb = nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
modules = [ ./machine/catacomb ];
|
||||
};
|
||||
empyrean = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [ ./machine/empyrean ];
|
||||
};
|
||||
stagirite = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
nixos-wsl.nixosModules.wsl
|
||||
./machine/stagirite
|
||||
];
|
||||
};
|
||||
nixosConfigurations.catacomb = nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
modules = [ ./machine/catacomb ];
|
||||
};
|
||||
nixosConfigurations.empyrean = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [ ./machine/empyrean ];
|
||||
};
|
||||
nixosConfigurations.stagirite = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
nixos-wsl.nixosModules.wsl
|
||||
./machine/stagirite
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -64,25 +64,29 @@
|
|||
];
|
||||
environment.variables.EDITOR = "vim";
|
||||
|
||||
services.nginx = let
|
||||
static-site = srv-dir: {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
root = "/srv/${srv-dir}/";
|
||||
extraConfig = ''
|
||||
access_log /var/log/nginx/access_${srv-dir}.log;
|
||||
index index.html;
|
||||
'';
|
||||
};
|
||||
in {
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
recommendedProxySettings = true;
|
||||
virtualHosts = {
|
||||
# Static pages
|
||||
"wedding.ktvb.site" = static-site "wedding.ktvb.site";
|
||||
"www.ktvb.site" = static-site "www.ktvb.site";
|
||||
"mirror.alogoulogoi.com" = static-site "mirror.alogoulogoi.com";
|
||||
"www.alogoulogoi.com" = static-site "www";
|
||||
"www.ktvb.site" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
root = "/srv/wedding/";
|
||||
extraConfig = ''
|
||||
access_log /var/log/nginx/access.ktvb.log;
|
||||
index index.html;
|
||||
'';
|
||||
};
|
||||
"www.alogoulogoi.com" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
root = "/srv/www/";
|
||||
extraConfig = ''
|
||||
access_log /var/log/nginx/access.www.log;
|
||||
index index.html;
|
||||
'';
|
||||
};
|
||||
# Deny all other subdomains
|
||||
"alogoulogoi.com" = {
|
||||
default = true;
|
||||
|
|
Loading…
Reference in New Issue