I've tried to run the ESP-IDF Simple https server example and the ESP-IDF wss_server example in parallel, calling both:
Code: Select all
start_wss_echo_server()
Code: Select all
start_webserver()
Code: Select all
httpd_ssl_start(&server, &conf);
I presume I can just use on instance of httpd_ssl_start() and bind both my https server and wss server on different URLS?
Anyone able to provide suggestions on setting this up?