lighttpd.manifest.template 888 B

123456789101112131415161718192021222324252627282930313233343536
  1. #!$(PAL)
  2. loader.preload = file:$(SHIMPATH)
  3. loader.exec = file:$(PWD)build/sbin/lighttpd
  4. loader.env.LD_LIBRARY_PATH = /lib:/lighttpd
  5. loader.debug_type = none
  6. fs.mount.root.type = chroot
  7. fs.mount.root.uri = file:
  8. fs.mount.other.lib1.type = chroot
  9. fs.mount.other.lib1.path = /lib
  10. fs.mount.other.lib1.uri = file:$(GLIBCDIR)
  11. fs.mount.other.lib2.type = chroot
  12. fs.mount.other.lib2.path = /lighttpd
  13. fs.mount.other.lib2.uri = file:$(PWD)build/lib
  14. fs.mount.other.usr.type = chroot
  15. fs.mount.other.usr.path = /usr
  16. fs.mount.other.usr.uri = file:/usr
  17. fs.mount.other.tmp.type = chroot
  18. fs.mount.other.tmp.path = /tmp
  19. fs.mount.other.tmp.uri = file:/tmp
  20. fs.mount.other.pwd.type = chroot
  21. fs.mount.other.pwd.path = $(PWD)
  22. fs.mount.other.pwd.uri = file:
  23. # allow to bind on port for listening
  24. net.rules.1 = $(HOST):$(PORT):0.0.0.0:0-65535
  25. sys.stack.size = 256K
  26. sys.brk.size = 4M
  27. glibc.heap_size = 16M