27 lines
		
	
	
		
			496 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			496 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, pkgs, lib, ... }:
 | |
| 
 | |
| {
 | |
|   services.nginx.virtualHosts."feal.no" = {
 | |
|     default = true;
 | |
| 
 | |
|     serverAliases = [
 | |
|       "www.feal.no"
 | |
|     ];
 | |
| 
 | |
|     locations = {
 | |
|       # TODO: Reinstate actual website
 | |
|       "/".return = "302 https://git.feal.no/";
 | |
| 
 | |
|       "^~ /.well-known/" = {
 | |
|         alias = (toString ./well-known) + "/";
 | |
|       };
 | |
| 
 | |
|       "/cc/" = {
 | |
|         alias = "${pkgs.cyberchef}/share/cyberchef/";
 | |
|         index = "index.html";
 | |
|       };
 | |
|       "= /cc".return = "302 /cc/";
 | |
|     };
 | |
|   };
 | |
| }
 |