1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/hosts/web02/configuration.nix

97 lines
2.8 KiB
Nix
Raw Normal View History

2024-01-10 13:30:05 +01:00
{ config, pkgs, lib, fernglas, ... }:
2023-12-06 10:21:07 +01:00
let
2024-01-09 17:02:32 +01:00
bmpPort = 11019;
2024-01-09 15:46:18 +01:00
autoIndex = ''
autoindex on;
autoindex_exact_size off;
autoindex_format html;
autoindex_localtime on;
'';
2023-12-06 10:21:07 +01:00
in {
networking = {
hostName = "web02";
2024-01-09 17:02:32 +01:00
firewall.allowedTCPPorts = [ 80 443 bmpPort ];
2024-01-09 16:23:24 +01:00
firewall.allowedUDPPorts = [ 443 ];
2023-12-06 10:21:07 +01:00
};
systemd.network.networks."98-eth-default" = {
address = [
"2a0f:be01:0:100::1312/128"
];
};
users.users."lg" = {
isSystemUser = true;
createHome = true;
home = "/var/www/lg.kyouma.net";
group = "lg";
};
users.groups."lg" = {};
2024-01-09 17:02:32 +01:00
services.vnstat.enable = true;
services.fernglas = {
enable = true;
2023-12-06 10:21:07 +01:00
settings = {
2024-01-09 17:02:32 +01:00
api.bind = "[::1]:3000";
collectors = {
bmp_collector = {
collector_type = "Bmp";
bind = "[::]:${toString bmpPort}";
peers = {
"45.150.123.0" = {};
};
};
};
2023-12-06 10:21:07 +01:00
};
};
services.nginx = {
2024-01-09 16:30:36 +01:00
createHost = {
2023-12-06 10:21:07 +01:00
"miau.zip" = { root = "/var/www/kyouma.net"; };
"www.miau.zip" = { redirectTo = "miau.zip"; };
"www.kyouma.net" = { redirectTo = "kyouma.net"; };
"emily.cat" = { root = "/var/www/emily.cat/_site"; };
"www.emily.cat" = { redirectTo = "kyouma.net"; };
"www.cocaine.trade" = { redirectTo = "cocaine.trade"; };
"redirect" = {
default = true;
reuseport = true;
useACMEHost = "kyouma.net";
extraConfig = ''
return 403;
'';
};
"cocaine.trade" = {
root = "/var/www/cocaine.trade";
extraConfig = ''error_page 404 /404.html;'';
locations."/" = {
index = "index.html";
tryFiles = "$uri $uri.html =404";
};
locations."= /".extraConfig = ''rewrite ^ /index.html last;'';
};
"files.cocaine.trade" = {
useACMEHost = "cocaine.trade";
root = "/mnt/basti/files.cocaine.trade";
2024-01-09 15:46:18 +01:00
locations."/".extraConfig = autoIndex;
};
"kyouma.net" = {
root = "/var/www/kyouma.net";
locations = {
"/ihk/".extraConfig = autoIndex;
"/vyos/".extraConfig = autoIndex;
"/3ds/".extraConfig = autoIndex;
};
2023-12-06 10:21:07 +01:00
};
"lg.kyouma.net" = {
useACMEHost = "kyouma.net";
2024-01-10 13:30:05 +01:00
locations."/".root = fernglas.packages.${config.nixpkgs.hostPlatform.system}.fernglas-frontend;
2024-01-09 17:02:32 +01:00
locations."/api/".proxyPass = "http://${config.services.fernglas.settings.api.bind}";
2023-12-06 10:21:07 +01:00
};
};
};
2024-01-10 13:30:05 +01:00
security.acme.certs = {
"miau.zip" = { extraDomainNames = [ "www.miau.zip" "lg.miau.zip" ]; };
"kyouma.net" = { extraDomainNames = [ "www.kyouma.net" "lg.kyouma.net" ]; };
"emily.cat" = { extraDomainNames = [ "www.emily.cat" ]; };
"cocaine.trade" = { extraDomainNames = [ "www.cocaine.trade" "files.cocaine.trade" ]; };
2023-12-06 10:21:07 +01:00
};
}