http_server, server_port overide settings
Posted: Wed Jan 16, 2019 5:09 am
Has anyone tried to change the server_port default vale of 80 to something else, and have it work?
I have the following and if i leave config.server_port=80 it works just fine, however if i change config.server_port=8080 it wont work.
httpd_config_t config = HTTPD_DEFAULT_CONFIG();
// Lets change this from port 80(default) to 8080
config.server_port = 8080;
I have the following and if i leave config.server_port=80 it works just fine, however if i change config.server_port=8080 it wont work.
httpd_config_t config = HTTPD_DEFAULT_CONFIG();
// Lets change this from port 80(default) to 8080
config.server_port = 8080;