Files
esp-idf/examples/protocols/http_server/restful_server/main/Kconfig.projbuild

23 lines
797 B
Plaintext
Raw Normal View History

2019-05-10 13:21:14 +08:00
menu "Example Configuration"
2019-05-09 16:43:06 +02:00
config EXAMPLE_MDNS_HOST_NAME
2019-05-10 13:21:14 +08:00
string "mDNS Host Name"
default "dashboard"
2019-05-10 13:21:14 +08:00
help
Specify the domain name used in the mDNS service.
Note that webpage also take it as a part of URL where it will send GET/POST requests to.
2019-05-09 16:43:06 +02:00
config EXAMPLE_WEB_MOUNT_POINT
2019-05-10 13:21:14 +08:00
string "Website mount point in VFS"
default "/www"
help
Specify the mount point in VFS.
config EXAMPLE_DEPLOY_WEB_PAGES
bool "Deploy web pages to device's filesystem"
default n
help
If enabled, the example will deploy web pages to the device's filesystem.
Ensure that the necessary files (html, css, js, etc.) are available in the `front/web-demo/dist` directory.
2019-05-10 13:21:14 +08:00
endmenu