jitsi / jitsi-meet-torture

Apache License 2.0
160 stars 148 forks source link

Unsecure SSL certs? #550

Open PelleHanses opened 1 year ago

PelleHanses commented 1 year ago

How to allow unsecure SSL certs? When I run the malleus.sh against a Jitsi with self-signes SSL cert it will not run. In the output it says "acceptInsecureCerts: false". Obvious I want it to be true. I have tried to set it "MALLEUS_ALLOW_INSECURE_CERTS" to true in malleus.sh but no luck. I have started malleus.sh with "--allow-insecure-certs=true" - no luck.

Is there an option to solve this?

damencho commented 1 year ago

Please, when you have questions or problems use the community forum before opening new issues, thank you.

Reading the code it is --allow-insecure-certs=true.

Check what is passed there https://github.com/jitsi/jitsi-meet-torture/blob/fa98e34be58ac9730d815e3989156e92917f439e/scripts/malleus.sh#L221 And check the value you get here: https://github.com/jitsi/jitsi-meet-torture/blob/fa98e34be58ac9730d815e3989156e92917f439e/src/test/java/org/jitsi/meet/test/web/WebParticipantFactory.java#L250

PelleHanses commented 1 year ago

Ok, thank you.