1234567891011121314151617181920212223242526272829 |
- #!$(PWD)../libpal.so
- loader.preload = file:$(SHIMPATH)
- loader.exec = file:obj/bin/httpd
- loader.execname = httpd
- loader.env.LD_LIBRARY_PATH = /lib:/lib/x86_64-linux-gnu:/usr/lib:/usr/lib/x86_64-linux-gnu
- loader.debug_type = none
- fs.mount.root.type = chroot
- fs.mount.root.uri = file:
- fs.mount.other.lib1.type = chroot
- fs.mount.other.lib1.path = /lib
- fs.mount.other.lib1.uri = file:$(GLIBCDIR)
- fs.mount.other.lib2.type = chroot
- fs.mount.other.lib2.path = /lib/x86_64-linux-gnu
- fs.mount.other.lib2.uri = file:/lib/x86_64-linux-gnu
- fs.mount.other.usr.type = chroot
- fs.mount.other.usr.path = /usr
- fs.mount.other.usr.uri = file:/usr
- fs.mount.other.cwd.type = chroot
- fs.mount.other.cwd.path = $(PWD)
- fs.mount.other.cwd.uri = file:
- # allow to bind on port for listening
- net.rules.1 = $(HOST):$(PORT):0.0.0.0:0-65535
|