16 lines
		
	
	
		
			398 B
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			398 B
		
	
	
	
		
			Plaintext
		
	
	
| server {
 | |
|     # SSL Key locations
 | |
|     ssl_certificate     /etc/letsencrypt/live/${MINIFLUX_DOMAIN}/fullchain.pem;
 | |
|     ssl_certificate_key /etc/letsencrypt/live/${MINIFLUX_DOMAIN}/privkey.pem;
 | |
| 
 | |
|     listen ${HTTPS_PORT} ssl;
 | |
|     listen [::]:${HTTPS_PORT} ssl;
 | |
|     server_name ${MINIFLUX_DOMAIN};
 | |
| 
 | |
|     location / {
 | |
|         resolver 127.0.0.11;
 | |
|         proxy_pass http://${MINIFLUX_HOST}:8080;
 | |
|     }
 | |
| }
 | |
| 
 |