hainich: remove A20 ghost

keep-around/776c4d2f0f9ecc2097690fb3b943e1ab6f20f5af
schweby 2021-06-23 23:06:49 +02:00
parent df6f0baa71
commit f6bf8c7c00
No known key found for this signature in database
GPG Key ID: B880491D046E2F87
2 changed files with 0 additions and 33 deletions

View File

@ -14,7 +14,6 @@
./services/nginx.nix
# ./k8s.nix
./services/ghost_waszumfff.nix
./services/ghost_A20.nix
./services/gitlab-runner.nix
./services/lantifa.nix
./services/syncthing.nix

View File

@ -1,32 +0,0 @@
{ 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;
";
};
};
}