about summary refs log tree commit diff
path: root/nix/hosts/corrino/www/r2wa.rs.nix
blob: f7a0a7e5ad03a84588936992cfc9e2520307dd9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ ... }:

{
  services.nginx.virtualHosts."r2wa.rs" = {
    forceSSL = true;
    enableACME = true;

    # kTLS = true;

    locations = {
      "/" = {
				return = "301 http://emile.space/blog/2020/r2wars/";
      };
		};
	};
}