diff options
author | Emile <git@emile.space> | 2024-07-21 17:41:03 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-07-21 17:41:03 +0200 |
commit | bf4cc39971f094eceb6ab3b190887ad0de7458ac (patch) | |
tree | 5dc34b7ec78eb7434e349d89f34441e5320bf4cd /nix/hosts/corrino/www/r2wa.rs.nix | |
parent | b1140ee81828a97a3bdcb098ae88c5ad33c2e93e (diff) |
r2wars parking page
Diffstat (limited to 'nix/hosts/corrino/www/r2wa.rs.nix')
-rw-r--r-- | nix/hosts/corrino/www/r2wa.rs.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nix/hosts/corrino/www/r2wa.rs.nix b/nix/hosts/corrino/www/r2wa.rs.nix new file mode 100644 index 0000000..f7a0a7e --- /dev/null +++ b/nix/hosts/corrino/www/r2wa.rs.nix @@ -0,0 +1,16 @@ +{ ... }: + +{ + services.nginx.virtualHosts."r2wa.rs" = { + forceSSL = true; + enableACME = true; + + # kTLS = true; + + locations = { + "/" = { + return = "301 http://emile.space/blog/2020/r2wars/"; + }; + }; + }; +} |