One step further, I did a nginx config to rewrite what I thoiught was needed, I can access the login page, but the 2FA is killing my effort. I’m mad! I get the code window, I put the code, then this url
https://myha.synology.me/lovelace?auth_callback=1&code=… is giving this result
nginx config
server {
listen 443 ssl;
server_name myha.synology.me;
ssl_certificate /etc/letsencrypt/live/myha.synology.me/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/myha.synology.me/privkey.pem;
location / {
proxy_pass https://192.168.1.2:8123;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
# Disable buffering
proxy_buffering off;
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
}
}