camden.tazj.in (the host in my flat) is going down as my belongings are being moved into storage. Change-Id: Id66512fd2ec6dbdcb6dfc3862af49cfadb15cfa1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2405 Tested-by: BuildkiteCI Reviewed-by: lukegb <lukegb@tvl.fyi> Reviewed-by: glittershark <grfn@gws.fyi>
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			597 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			597 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # serve tazjin's website & blog
 | |
| { config, lib, pkgs, ... }:
 | |
| 
 | |
| let depot = config.depot;
 | |
| in {
 | |
|   imports = [
 | |
|     ./base.nix
 | |
|   ];
 | |
| 
 | |
|   config = {
 | |
|     services.nginx.virtualHosts."tazj.in" = {
 | |
|       enableACME = true;
 | |
|       forceSSL = true;
 | |
|       root = depot.users.tazjin.homepage;
 | |
| 
 | |
|       extraConfig = ''
 | |
|         ${depot.users.tazjin.blog.oldRedirects}
 | |
|         location /blog/ {
 | |
|           alias ${depot.users.tazjin.blog.rendered}/;
 | |
| 
 | |
|           if ($request_uri ~ ^/(.*)\.html$) {
 | |
|             return 302 /$1;
 | |
|           }
 | |
| 
 | |
|           try_files $uri $uri.html $uri/ =404;
 | |
|         }
 | |
|       '';
 | |
|     };
 | |
|   };
 | |
| }
 |