From 899594512bcf64039c3138ab6827da04cf46a0eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Sun, 13 Aug 2017 17:05:45 +0200 Subject: [PATCH] Changes in HTML info --- code/html/index.html | 7 ++++--- code/platformio.ini | 9 +++++++++ 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/code/html/index.html b/code/html/index.html index afe671e7..e7c2a83d 100644 --- a/code/html/index.html +++ b/code/html/index.html @@ -468,9 +468,10 @@
 
- This is the fingerprint for the SSL certificate of the server. If using CloudMQTT you can get it using (use your server and port):
- $ echo -n | openssl s_client -connect m11.cloudmqtt.com:24055 > cloudmqtt.pem
- $ openssl x509 -noout -in cloudmqtt.pem -fingerprint -sha1 + This is the fingerprint for the SSL certificate of the server.
+ You can get it using https://www.grc.com/fingerprints.htm
+ or using openssl from a linux box by typing:
+
$ openssl s_client -connect <host>:<port> < /dev/null 2>/dev/null | openssl x509 -fingerprint -noout -in /dev/stdin
diff --git a/code/platformio.ini b/code/platformio.ini index 2023ecba..723e51dc 100644 --- a/code/platformio.ini +++ b/code/platformio.ini @@ -79,6 +79,15 @@ lib_ignore = ${common.lib_ignore} extra_script = pio_hooks.py build_flags = ${common.build_flags} -DNODEMCUV2 -DDEBUG_FAUXMO=Serial -DNOWSAUTH +[env:node-debug-ssl] +platform = espressif8266_stage +framework = arduino +board = nodemcuv2 +lib_deps = ${common.lib_deps} +lib_ignore = ${common.lib_ignore} +extra_script = pio_hooks.py +build_flags = ${common.build_flags} -DNODEMCUV2 -DDEBUG_FAUXMO=Serial -DNOWSAUTH -DASYNC_TCP_SSL_ENABLED=1 + [env:node-debug-ota] platform = espressif8266 framework = arduino