You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The deployment for DCAP attestation is not well supported. runtime.config.toml and build.config.toml have to be modified manually. There are three runtime.config.tomls in config, docker and tests/fixtures respectively.
The text was updated successfully, but these errors were encountered:
Hi @henrysun007, I noticed that the port for attestation is hardcoded as 443 in attestation/src/service.rs:
let addrs = url.socket_addrs(|| match url.scheme(){"https" => Some(443),// Fixed port.
_ => None,})?;
Is it possible for us to change the binding port? Sometimes 443 on the local machine is already in use for other services so that we cannot deploy DCAP.
Motivation & problem statement
The deployment for DCAP attestation is not well supported.
runtime.config.toml
andbuild.config.toml
have to be modified manually. There are threeruntime.config.toml
s inconfig
,docker
andtests/fixtures
respectively.The text was updated successfully, but these errors were encountered: