I'm try to implement the noVNC APIs to create a custom element to handle the noVNC frames on canvas. When i'm calling new RBF() Object to start the noVNC connection
 // javascript
 this.rbf = new RFB(screen, this.url.href)
 //  fired when the server identity must be confirmed by the user.
 this.rbf.addEventListener(
    'serververification', (event) => {
        console.log('@SERVER-VERIFICATION >> ', event.type)
    }
)
# bash code to run websockify
websockify -v 8888 192.168.1.11:5900
I get the event serververification event with field isTrusted: false. The only info I've found about, it's the sentence in official doc about this event fired when the server identity must be confirmed by the user .... but how i can solve and establish the connection without raise this event ?