menu "HTTPD Server"

choice HTTPS_SERVER_MODE
   prompt "http or https"
   default HTTPS_SERVER_DISABLED
   help
      Wheter the http server is secure or not

config HTTPS_SERVER_ENABLED
   bool "Https enabled"
config HTTPS_SERVER_DISABLED
   bool "Https disabled"
endchoice

config HTTPS_SERVER
   bool
   default y if HTTPS_SERVER_ENABLED
   default n if HTTPS_SERVER_DISABLED

config HTTPD_EXAMPLE
   bool "Enable HTTP POST/GET Example functions"
   default n

endmenu