esp32_https_server icon indicating copy to clipboard operation
esp32_https_server copied to clipboard

Alternative ESP32 Webserver implementation for the ESP32 Arduino Core, supporting HTTPS and HTTP.

Results 96 esp32_https_server issues
Sort by recently updated
recently updated
newest added

**Describe Your Goal** Running the standard ESP32 CameraWebServer example on an https webserver. **What Does Your Project Look Like** The same as the [official example](https://github.com/espressif/arduino-esp32/tree/master/libraries/ESP32/examples/Camera/CameraWebServer) except including esp_https_server instead of...

**Describe the bug** "POST" HTTPS request with some specific configuration for "Accept-Language" header makes HTTPS Server on ESP32 to crash. **Steps to reproduce the behavior** Hardware: ESP32 "POST" HTTPS query...

I created a project where I use the Self-Signed-Certificate example. After upload the code the device has Guru meditation error. Can you help me what is the problem? The error...

Picojpeg is great. I found it embeded in Bodmer's JPEGDecoder https://github.com/Bodmer/JPEGDecoder/blob/master/src/picojpeg.h and used to display images on a 135x240 pixel OLED display. I created a 10x10 pixel JPEG encoded image...

At current it seems that this library does not support client certificates for authentication. My understanding is that you're using mbedtls for the underlying TLS implementation, and it does support...

feature

I would like to operate a web server based on aWot (https://github.com/lasselukkari/aWOT) that is capable of both WiFi and Ethernet HTTPS. aWOT uses streams for communication, (https://github.com/lasselukkari/aWOT/issues/89#issuecomment-749274842). I know that...

**Describe the bug** The createSelfSignedCert function from SSLCert.cpp crashes many times before occasionally generating the certificate. **How To Reproduce** Steps to reproduce the behavior: 1. Compile and upload REST-API.ino. 2....

bug

**Is your feature request related to a problem? Please describe.** Certificates that work with built-in trust of most browsers are often not issued by the built-in CAs, but often by...

feature

I'll bet this is off-topic... does someone have example Javascript code to do a binary jpg file upload to esp32_https_server. Something like this: ``` function uploadimages() { canvas.getContext('2d').drawImage( photo1, 0,...

When creating self-signed certificates, add the `CN` in the subjectAltName extension so browsers stop complaining. References: - #112