12345678910111213141516171819202122232425 |
- loader.preload = file:$(SHIMPATH)
- loader.exec = file:/bin/rm
- loader.env.LD_LIBRARY_PATH = /lib:/lib/x86_64-linux-gnu
- loader.debug_type = none
- fs.mount.lib.type = chroot
- fs.mount.lib.path = /lib
- fs.mount.lib.uri = file:$(LIBCDIR)
- fs.mount.hostlib.type = chroot
- fs.mount.hostlib.path = /lib/x86_64-linux-gnu
- fs.mount.hostlib.uri = file:/lib/x86_64-linux-gnu
- fs.mount.bin.type = chroot
- fs.mount.bin.path = /bin
- fs.mount.bin.uri = file:/bin
- # allow to bind on port 8000
- net.rules.1 = 127.0.0.1:8000:0.0.0.0:0-65535
- # allow to connect to port 8000
- net.rules.2 = 0.0.0.0:0-65535:127.0.0.1:8000
- # sgx-related
- sgx.trusted_files.ld.uri = file:$(LIBCDIR)/ld-linux-x86-64.so.2
- sgx.trusted_files.libc.uri = file:$(LIBCDIR)/libc.so.6
|