Stephen Scotter
Stephen Scotter
I too would really benefit from this feature. Cheers! 🍻
> @sscotter Did you able to figure this out? I don't believe so. It's been a while since I touched the code but I don't recall having a breakthrough. :(
I have around 130 users which connect to our company network using OpenVPN and the OpenVPN GUI. One of those users is regularly having problems with the GUI silently crashing...
Putting nginx in front of bricksllm and configuring that to handle the SSL works.. ``` server { listen 443 ssl; server_name bricksllm.example.local; access_log /var/log/nginx/access-vhost-local.example.bricksllm.log; error_log /var/log/nginx/error-vhost-local.example.bricksllm.log; ssl_certificate /etc/nginx/ssl/bricksllm.example.local.cer; ssl_certificate_key /etc/nginx/ssl/bricksllm.example.local.key;...