From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
certs: make certificates work with apps running on firecracker This patch adds 172.16.0.2 to the list of valid addresses to make the apps running on firecracker and communicating over https function properly. This patch also adds client keys to the mpm package. Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/modules/certs/server.info b/modules/certs/server.info --- a/modules/certs/server.info +++ b/modules/certs/server.info @@ -1,5 +1,6 @@ cn=osv ip_address=192.168.122.89 +ip_address=172.16.0.2 dns_name=localhost dns_name=osv tls_www_server diff --git a/modules/certs/usr.manifest b/modules/certs/usr.manifest --- a/modules/certs/usr.manifest +++ b/modules/certs/usr.manifest @@ -1,3 +1,5 @@ /etc/pki/server.pem: ${MODULE_DIR}/build/server.pem /etc/pki/private/server.key: ${MODULE_DIR}/build/server.key /etc/pki/CA/cacert.pem: ${MODULE_DIR}/build/cacert.pem +/client/client.pem: ${MODULE_DIR}/build/client.pem +/client/client.key: ${MODULE_DIR}/build/client.key -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/000000000000c2413f05a3c3b696%40google.com.
