If you have moved out of the en_US.ISO8859-1/htdocs
directory, change back to it.
# cd /usr/build/en_US.ISO8859-1/htdocsRun the make(1) install
target, setting the DESTDIR variable to
the name of the directory you want to install the files to.
The actual files are installed under $DESTDIR/data
which should be configured as your web server's document
root.
# env DESTDIR=/usr/local/www make installIf you have previously installed the web pages into the same directory the install process will not have deleted any old or outdated pages. For example, if you build and install a new copy of the site every day, this command will find and delete all files that have not been updated in three days.
# find /usr/local/www -ctime 3 -print0 | xargs -0 rmThis, and other documents, can be downloaded from ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/
For questions about FreeBSD, read the
documentation before
contacting <questions@FreeBSD.org>.
For questions about this documentation, e-mail <doc@FreeBSD.org>.