about summary refs log tree commit diff
path: root/users/wpcarro/nixos/modules/www/wpcarro.dev.nix
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2023-01-03T01·41-0800
committerwpcarro <wpcarro@gmail.com>2023-01-18T03·11+0000
commit6078d6eade84c7504bdeda3f8fcd7ca001e401a7 (patch)
tree3f119e14e2c9248bfc61e3baf6320ea10bc7d2d5 /users/wpcarro/nixos/modules/www/wpcarro.dev.nix
parent485c3cc912a5713a22cd655c0e35d77d686e3ccc (diff)
feat(wpcarro/diogenes): Delete diogenes r/5685
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>
Diffstat (limited to 'users/wpcarro/nixos/modules/www/wpcarro.dev.nix')
-rw-r--r--users/wpcarro/nixos/modules/www/wpcarro.dev.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/users/wpcarro/nixos/modules/www/wpcarro.dev.nix b/users/wpcarro/nixos/modules/www/wpcarro.dev.nix
deleted file mode 100644
index 62c1ed308c89..000000000000
--- a/users/wpcarro/nixos/modules/www/wpcarro.dev.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ pkgs, ... }:
-
-{
-  config = {
-    services.nginx.virtualHosts."wpcarro.dev" = {
-      enableACME = true;
-      forceSSL = true;
-      extraConfig = "return 302 https://billandhiscomputer.com$request_uri;";
-    };
-  };
-}