feat(wpcarro/diogenes): Delete diogenes

Trying to prune my monthly GCP bill, which is ~$60. Will run my website as a
stateless Google Cloud Run service and see if that'll help.

I still need to figure out what to do with my Quassel instance...

Change-Id: I934b55029f14132af74cabde5e0ddb9e2d3bb933
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7734
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
This commit is contained in:
William Carroll 2023-01-02 17:41:45 -08:00 committed by wpcarro
parent 485c3cc912
commit 6078d6eade
7 changed files with 0 additions and 207 deletions

View file

@ -1,11 +0,0 @@
{ pkgs, depot, ... }:
{
config = {
services.nginx.virtualHosts."billandhiscomputer.com" = {
enableACME = true;
forceSSL = true;
root = depot.users.wpcarro.website.root;
};
};
}

View file

@ -1,11 +0,0 @@
{ pkgs, ... }:
{
config = {
services.nginx.virtualHosts."wpcarro.dev" = {
enableACME = true;
forceSSL = true;
extraConfig = "return 302 https://billandhiscomputer.com$request_uri;";
};
};
}