Compare commits
1 commit
2a7f905bc2
...
4c94932490
Author | SHA1 | Date | |
---|---|---|---|
Tristan Daniël Maat | 4c94932490 |
|
@ -3,7 +3,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./services/gitea.nix
|
./services/gitea.nix
|
||||||
./services/hydra.nix
|
|
||||||
./services/minecraft.nix
|
./services/minecraft.nix
|
||||||
./services/nextcloud.nix
|
./services/nextcloud.nix
|
||||||
./services/webserver.nix
|
./services/webserver.nix
|
||||||
|
@ -69,7 +68,6 @@
|
||||||
"${domain}" = host 3002 { serverAliases = [ "www.${domain}" ]; };
|
"${domain}" = host 3002 { serverAliases = [ "www.${domain}" ]; };
|
||||||
"gitea.${domain}" = host 3000 { };
|
"gitea.${domain}" = host 3000 { };
|
||||||
"nextcloud.${domain}" = host 3001 { };
|
"nextcloud.${domain}" = host 3001 { };
|
||||||
"hydra.${domain}" = host config.services.hydra.port { };
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,16 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
services.hydra = {
|
|
||||||
enable = true;
|
|
||||||
port = 3003;
|
|
||||||
|
|
||||||
hydraURL = "hydra.tlater.net";
|
|
||||||
notificationSender = "hydra@tlater.net";
|
|
||||||
extraConfig = ''
|
|
||||||
<gitea_authorization>
|
|
||||||
|
|
||||||
</gitea_authorization>
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -36,7 +36,7 @@
|
||||||
volumes = [ "tlaternet-mail:/srv/mail" ];
|
volumes = [ "tlaternet-mail:/srv/mail" ];
|
||||||
extraOptions = [
|
extraOptions = [
|
||||||
"--hostname=tlater.net"
|
"--hostname=tlater.net"
|
||||||
# This can change with rocket 0.5.
|
# Rocket 0.4 doesn't support SIGTERM anyway, so SIGKILL is the cleanest exit possible.
|
||||||
"--stop-signal=SIGKILL"
|
"--stop-signal=SIGKILL"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
14
flake.nix
14
flake.nix
|
@ -68,7 +68,7 @@
|
||||||
(import ./modules)
|
(import ./modules)
|
||||||
|
|
||||||
(import ./configuration)
|
(import ./configuration)
|
||||||
({ config, lib, ... }: {
|
({ lib, ... }: {
|
||||||
users.users.tlater.password = "insecure";
|
users.users.tlater.password = "insecure";
|
||||||
|
|
||||||
# Disable graphical tty so -curses works
|
# Disable graphical tty so -curses works
|
||||||
|
@ -78,18 +78,6 @@
|
||||||
# can easily test locally with the VM.
|
# can easily test locally with the VM.
|
||||||
services.nginx.domain = lib.mkOverride 99 "localhost";
|
services.nginx.domain = lib.mkOverride 99 "localhost";
|
||||||
|
|
||||||
# Hydra uses X-Forwarded-Port to figure out how to
|
|
||||||
# include links to static files, but because we redirect
|
|
||||||
# 443 -> 3443 in the vm we need to explicitly set this
|
|
||||||
# (nginx can't see qemu's port redirection).
|
|
||||||
services.nginx.virtualHosts =
|
|
||||||
let domain = config.services.nginx.domain;
|
|
||||||
in {
|
|
||||||
"hydra.${domain}".locations."/".extraConfig = ''
|
|
||||||
proxy_set_header X-Forwarded-Port 3443;
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
# # Set up VM settings to match real VPS
|
# # Set up VM settings to match real VPS
|
||||||
# virtualisation.memorySize = 3941;
|
# virtualisation.memorySize = 3941;
|
||||||
# virtualisation.cores = 2;
|
# virtualisation.cores = 2;
|
||||||
|
|
Loading…
Reference in a new issue