mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			335 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			335 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| openssl genrsa -des3 -out cert.key 2048
 | |
| 
 | |
| openssl req -new -key cert.key -out cert.csr
 | |
| 
 | |
| # Remove passphrase from key
 | |
| cp cert.key cert.key.org
 | |
| 
 | |
| openssl rsa -in cert.key.org -out cert.key
 | |
| 
 | |
| # Generate self signed certificate
 | |
| openssl x509 -req -days 730 -in cert.csr -signkey cert.key -out cert.crt
 | |
| 
 | |
| rm cert.key.org
 | |
| rm cert.csr |