m 2 deployment: add boot-euer
This commit is contained in:
parent
d756d5bcfb
commit
67a06b90b3
28
makefu/2configs/deployment/boot-euer.nix
Normal file
28
makefu/2configs/deployment/boot-euer.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
# more than just nginx config but not enough to become a module
|
||||||
|
with import <stockholm/lib>;
|
||||||
|
let
|
||||||
|
hostname = config.krebs.build.host.name;
|
||||||
|
bootscript = pkgs.writeTextDir "runit" ''
|
||||||
|
set -euf
|
||||||
|
cd /root
|
||||||
|
mkdir -p .ssh
|
||||||
|
echo "${config.krebs.users.makefu.pubkey}" > .ssh/authorized_keys
|
||||||
|
chmod 700 -R .ssh
|
||||||
|
systemctl restart sshd
|
||||||
|
'';
|
||||||
|
in {
|
||||||
|
|
||||||
|
services.nginx = {
|
||||||
|
enable = mkDefault true;
|
||||||
|
virtualHosts."boot.euer.krebsco.de" = {
|
||||||
|
enableSSL = true;
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."/" = {
|
||||||
|
root = bootscript;
|
||||||
|
index = "runit";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue