Files
esphome/esphome/components/web_server_idf/__init__.py

15 lines
405 B
Python

from esphome.components.esp32 import add_idf_sdkconfig_option
import esphome.config_validation as cv
CODEOWNERS = ["@dentra"]
CONFIG_SCHEMA = cv.All(
cv.Schema({}),
cv.only_on_esp32,
)
async def to_code(config):
# Increase the maximum supported size of headers section in HTTP request packet to be processed by the server
add_idf_sdkconfig_option("CONFIG_HTTPD_MAX_REQ_HDR_LEN", 1024)