1menu "Http_File_Serving Example menu" 2 3 config EXAMPLE_MOUNT_SD_CARD 4 bool "Mount the SD card to the filesystem" 5 default n 6 help 7 If this config item is set, the file you upload to server can be chosen to save in the SDcard. 8 9 config EXAMPLE_FORMAT_IF_MOUNT_SDCARD_FAILED 10 bool "The card will be formatted if mount has failed." 11 default n 12 depends on EXAMPLE_MOUNT_SD_CARD 13 help 14 If this config item is set, the card will be formatted if mount has failed. 15 16 config EXAMPLE_USE_SDMMC_HOST 17 bool "Use SDMMC host" 18 default y 19 depends on EXAMPLE_MOUNT_SD_CARD && IDF_TARGET_ESP32 20 help 21 If this config item is set, SDMMC is used to mount the SDcard. 22 Otherwise, will use SPI host to access and mount the SDcard. 23 24 config EXAMPLE_HTTPD_CONN_CLOSE_HEADER 25 bool "Send connection close header from request handlers" 26 default y 27 help 28 If this config item is set, Connection: close header will be set in handlers. 29 This closes HTTP connection and frees the server socket instantly. 30endmenu 31