slackbuilds/network/mod_chroot
B. Watson 2dba874f2a network/mod_chroot: Wrap README at 72 columns.
Signed-off-by: B. Watson <yalhcru@gmail.com>
2022-03-13 18:09:30 -04:00
..
README network/mod_chroot: Wrap README at 72 columns. 2022-03-13 18:09:30 -04:00
doinst.sh
mod_chroot.SlackBuild All: Support $PRINT_PACKAGE_NAME env var 2021-07-17 21:55:09 +02:00
mod_chroot.conf
mod_chroot.info network/mod_chroot: Switch homepage to archive.org. 2018-05-20 08:35:07 +07:00
slack-desc network/mod_chroot: Switch homepage to archive.org. 2018-05-20 08:35:07 +07:00

README

mod_chroot allows you to run Apache in a chroot jail with no
additional files.  This makes running Apache in a chroot environment
easy.

The chroot() system call is performed at the end of startup procedure
- when all libraries are loaded and log files open. No need for
a special directory hierarchy (containing /dev, /lib, /etc...),
unless an external handler, such as suEXEC or suPHP, is being used,
or system()-like functions are in use.

This package pre-creates /var/chroot/httpd with just enough subdirs
to enable the stock Slackware config to run. You'll need to add the
following line to your /etc/httpd/httpd.conf file:
  Include /etc/httpd/extra/mod_chroot.conf

You'll also need to add the following lines to your /etc/fstab file:
  /var/run/httpd /var/chroot/httpd/var/run/httpd none bind
  /srv /var/chroot/httpd/srv none bind
  /var/www /var/chroot/httpd/var/www none bind