We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 788de00 + e5db359 commit 20f9196Copy full SHA for 20f9196
enclaver/src/constants.rs
@@ -16,7 +16,7 @@ pub const HTTP_EGRESS_VSOCK_PORT: u32 = 17002;
16
17
// Default TCP Port that the egress proxy listens on inside the enclave, if not
18
// specified in the manifest.
19
-pub const HTTP_EGRESS_PROXY_PORT: u16 = 9000;
+pub const HTTP_EGRESS_PROXY_PORT: u16 = 10000;
20
21
// The hostname to refer to the host side from inside the enclave.
22
pub const OUTSIDE_HOST: &str = "host";
enclaver/src/run_container.rs
@@ -81,6 +81,7 @@ impl RunWrapper {
81
cgroup_permissions: Some(String::from("rwm")),
82
}]),
83
port_bindings: Some(port_bindings),
84
+ privileged: Some(true),
85
..Default::default()
86
}),
87
exposed_ports: Some(exposed_ports),
0 commit comments