add firefly
This commit is contained in:
		
							parent
							
								
									75fe6138c0
								
							
						
					
					
						commit
						b9a00a51e1
					
				
					 1 changed files with 33 additions and 0 deletions
				
			
		
							
								
								
									
										33
									
								
								sys/srv/firefly.nix
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								sys/srv/firefly.nix
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,33 @@ | |||
| { | ||||
|   lib, | ||||
|   pkgs, | ||||
|   ... | ||||
| }: | ||||
| with lib; { | ||||
|   services = { | ||||
|     nginx = { | ||||
|       virtualHosts."firefly.posixlycorrect.com" = { | ||||
|         enableACME = true; | ||||
|         forceSSL = true; | ||||
|         extraConfig = '' | ||||
|           proxy_headers_hash_max_size 512; | ||||
|           proxy_headers_hash_bucket_size 128; | ||||
|         ''; | ||||
|       }; | ||||
|     }; | ||||
| 
 | ||||
|     firefly-iii = { | ||||
|       enable = true; | ||||
|       user = "firefly-iii"; | ||||
|       dataDir = "/var/lib/firefly-iii"; | ||||
|       enableNginx = true; | ||||
|       virtualHost = "firefly.posixlycorrect.com"; | ||||
|       settings = { | ||||
|         SITE_OWNER = "fabian@posixlycorrect.com"; | ||||
|         DB_CONNECTION = "sqlite"; | ||||
|         APP_ENV = "local"; | ||||
|         APP_KEY_FILE = /var/trust/firefly/key_file; | ||||
|       }; | ||||
|     }; | ||||
|   }; | ||||
| } | ||||
		Reference in a new issue