blade-tuvok: add fup

This commit is contained in:
Luke Granger-Brown 2021-03-22 02:43:17 +00:00
parent b4e785af8a
commit ca642bfa5e
2 changed files with 73 additions and 0 deletions

View file

@ -8,6 +8,7 @@ let
in {
imports = [
../lib/blade.nix
../lib/fup.nix
];
boot.loader.grub.device = "/dev/disk/by-id/usb-USB_SanDisk_3.2Gen1_0101cabb1ebdbdc0fd7b18edd207d43717c39c4a59d1b138b363e315841eca15743400000000000000000000443273100087260091558107b6a8e06e-0:0";

72
ops/nixos/lib/fup.nix Normal file
View file

@ -0,0 +1,72 @@
{ config, options, depot, lib, ... }:
let
inherit (depot.ops) secrets;
sock = "/run/fup.sock";
pkg = depot.web.fup;
in
{
options = with lib; {
my.fup.listen = lib.mkOption {
type = with types; listOf str;
default = [ "127.0.0.1" "[::1]" ];
};
};
config = let
nginxListen = (map (addr: {
inherit addr;
port = 80;
ssl = false;
}) config.my.fup.listen) ++ (map (addr: {
inherit addr;
port = 443;
ssl = true;
}) config.my.fup.listen);
in {
security.acme = {
acceptTerms = true;
email = lib.mkDefault "letsencrypt@lukegb.com";
certs."p.lukegb.com" = {
group = config.services.nginx.group;
dnsProvider = "cloudflare";
credentialsFile = secrets.cloudflareCredentials;
};
};
services.nginx = {
enable = lib.mkDefault true;
virtualHosts."p.lukegb.com" = {
listen = nginxListen;
useACMEHost = "p.lukegb.com";
forceSSL = true;
locations."/" = {
proxyPass = "http://unix:${sock}";
};
};
};
systemd.sockets.fup = {
listenStreams = [ sock ];
wantedBy = [ "sockets.target" ];
socketConfig = {
SocketUser = config.services.nginx.user;
SocketGroup = config.services.nginx.group;
SocketMode = "0700";
};
};
systemd.services.fup = {
wantedBy = [ "multi-user.target" ];
requires = [ "network.target" ];
after = [ "network.target" "multi-user.target" ];
serviceConfig = {
Type = "simple";
Restart = "always";
EnvironmentFile = secrets.fup.environment;
ExecStart = "${pkg}/bin/fup serve --listen=systemd --root=https://p.lukegb.com/ --bucket-url=s3://public-lukegb-fup?endpoint=objdump.zxcvbnm.ninja&region=london";
DynamicUser = true;
};
};
};
}