Skip to content

Commit 238615c

Browse files
fix(examples): Update accurate information for HTTPS Server
1 parent a261827 commit 238615c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/protocols/https_server/simple/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
22
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
33

4-
# HTTP server with SSL support using OpenSSL
4+
# HTTPS server
55

6-
This example creates a SSL server that returns a simple HTML page when you visit its root URL.
6+
This example creates an HTTPS server with SSL/TLS support using **ESP-TLS** that serves a simple HTML page when you visit its root URL.
77

8-
See the `esp_https_server` component documentation for details.
8+
For more information, refer to the [esp_https_server component documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/protocols/esp_https_server.html).
99

1010
## How to use example
1111
Before project configuration and build, be sure to set the correct chip target using `idf.py set-target <chip_name>`.

examples/protocols/https_server/wss_server/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
22
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
33

4-
# HTTP Websocket server with SSL support
4+
# HTTPS Websocket server
55

6-
This example creates a SSL server and employs a simple Websocket request handler. It demonstrates handling multiple clients from the server including:
6+
This example creates an HTTPS server with SSL/TLS support using ESP-TLS and employs a simple Websocket request handler. It demonstrates handling multiple clients from the server including:
77
* PING-PONG mechanism
88
* Sending asynchronous messages to all clients
99

10-
See the `esp_https_server` component documentation for details.
10+
For more information, refer to the [esp_https_server component documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/protocols/esp_https_server.html).
1111

1212

1313
### Websocket support in `http_server`

0 commit comments

Comments
 (0)