Added built-in HTTP Server

This commit is contained in:
nopnop2002
2021-07-09 14:43:01 +09:00
parent 52a1ab54a2
commit 298730dbe3
11 changed files with 606 additions and 74 deletions
+33
View File
@@ -90,6 +90,39 @@ menu "Application Configuration"
help
Set the Maximum retry to avoid station reconnecting to the AP unlimited when the AP is really inexistent.
config MDNS_HOSTNAME
string "mDNS Hostname"
default "esp32-server"
help
The mDNS host name used by the ESP32.
config STATIC_IP
bool "Enable Static IP Address"
default false
help
Enable Static IP Address.
config STATIC_IP_ADDRESS
depends on STATIC_IP
string "Static IP Address"
default "192.168.10.100"
help
Static IP Address for Station.
config STATIC_GW_ADDRESS
depends on STATIC_IP
string "Static GW Address"
default "192.168.10.1"
help
Static GW Address for Station.
config STATIC_NM_ADDRESS
depends on STATIC_IP
string "Static Netmask"
default "255.255.255.0"
help
Static Netmask for Station.
endmenu
menu "HTTP Server Setting"