Kconfig.projbuild 1.1 KB

1234567891011121314151617181920212223242526272829
  1. menu "Example Configuration"
  2. config EXAMPLE_BASIC_AUTH
  3. bool "Basic Authentication"
  4. default n
  5. help
  6. Basic Authentication is a method for an HTTP user agent (e.g. a web browser)
  7. to provide a user name and password when making a request. It is the simplest
  8. technique for enforcing access controls to web resources. because it doesn't
  9. require cookies, session identifiers, or login pages; rather, it uses standard
  10. fields in the HTTP header.
  11. Note that, Basic Authentication is not encrypted channel and also easy to retrieve
  12. credentials as they are sent in plain text format.
  13. config EXAMPLE_BASIC_AUTH_USERNAME
  14. string "Basic Authenticate User Name"
  15. depends on EXAMPLE_BASIC_AUTH
  16. default "ESP32"
  17. help
  18. The client's user name which used for basic authenticate.
  19. config EXAMPLE_BASIC_AUTH_PASSWORD
  20. string "Basic Authenticate Password"
  21. depends on EXAMPLE_BASIC_AUTH
  22. default "ESP32Webserver"
  23. help
  24. The client's password which used for basic authenticate.
  25. endmenu