commit | 91243c3b28b1df66e682f5a3ee96341fdc516b5a | [log] [tgz] |
---|---|---|
author | James Feist <james.feist@linux.intel.com> | Tue Nov 12 14:55:40 2019 -0800 |
committer | James Feist <james.feist@linux.intel.com> | Wed Nov 13 09:14:13 2019 -0800 |
tree | 0cff43a7ea4e2f3fdfdc6447d5448fef748ee67d | |
parent | 6a3e18261cc713409bf11382c472c7301d6d9770 [diff] |
Disable ssl verify peer This makes some browswers fail to login without a certificate, it needs to stay disabled. Introduced here: https://github.com/openbmc/bmcweb/commit/55e43f69#diff-f34027492b16c1b7a880248323fe4fd8R316 Tested: Cert was not required in Chrome on Windows Change-Id: I27e60e73784d04e14b9b1495ebd1399ad4ab96ab Signed-off-by: James Feist <james.feist@linux.intel.com>
This component attempts to be a "do everything" embedded webserver for openbmc.
At this time, the webserver implements a few interfaces:
BMCWeb is configured by setting -D
flags that correspond to options in bmcweb/CMakeLists.txt
and then compiling. For example, cmake -DBMCWEB_ENABLE_KVM=NO ...
followed by make
. The option names become C++ preprocessor symbols that control which code is compiled into the program.
When BMCWeb starts running, it reads persistent configuration data (such as UUID and session data) from a local file. If this is not usable, it generates a new configuration.
When BMCWeb SSL support is enabled and a usable certificate is not found, it will generate a self-sign a certificate before launching the server. The keys are generated by the prime256v1
algorithm. The certificate
C=US, O=OpenBMC, CN=testhost
,SHA-256
algorithm.