Hi all,
I have Blue Iris running behind Nginx in a private LAN.
Here is my current Nginx configuration (Ubuntu 24.04 lts):
server {
listen 80;
server_name example.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
server_name example.com...