hainich: init ghost A20
This commit is contained in:
parent
7d2e5f7576
commit
644c433809
3 changed files with 34 additions and 1 deletions
|
@ -12,7 +12,8 @@
|
|||
# ./wireguard.nix
|
||||
./services/nginx.nix
|
||||
# ./k8s.nix
|
||||
./services/docker.nix
|
||||
./services/ghost_waszumfff.nix
|
||||
./services/ghost_A20.nix
|
||||
./services/gitlab-runner.nix
|
||||
./services/lantifa.nix
|
||||
./services/syncthing.nix
|
||||
|
|
32
hosts/hainich/services/ghost_A20.nix
Normal file
32
hosts/hainich/services/ghost_A20.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
virtualisation.oci-containers.containers."ghost-A20" = {
|
||||
autoStart = true;
|
||||
environment = {
|
||||
url = "https://A20.4future.dev";
|
||||
};
|
||||
image = "ghost:alpine";
|
||||
ports = [ "127.0.0.1:2369:2368" ];
|
||||
volumes = [ "/run/A20:/var/lib/ghost/content" ];
|
||||
};
|
||||
|
||||
fileSystems."/run/A20" =
|
||||
{ device = "dpool/k8s/A20";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
services.nginx.virtualHosts."A20.4future.dev" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://127.0.0.1:2369";
|
||||
extraConfig = "
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-Host $http_host;
|
||||
";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue