InstallFromSource » History » Revision 22
Revision 21 (gstrauss, 2021-07-14 18:45) → Revision 22/38 (gstrauss, 2021-07-14 19:02)
{{>toc}}
h2. InstallFromSource
h3. source browser
View source code in the "lighttpd 1.4 git repository"://git.lighttpd.net/lighttpd/lighttpd1.4.git
h3. source checkout
There are multiple options to obtain a lighttpd source tree. git is recommended.
* git: (recommended)
read-only: @$ git clone https://git.lighttpd.net/lighttpd/lighttpd1.4.git@
developer: @$ git clone git+ssh://git@lighttpd.net/lighttpd/lighttpd1.4.git@
<pre>
# initial checkout
git clone https://git.lighttpd.net/lighttpd/lighttpd1.4.git
cd lighttpd1.4
# subsequent updates (to obtain latest source)
#cd lighttpd1.4
git pull
</pre>
* svn: (alternative to git)
<pre>
# initial checkout
svn checkout https://github.com/lighttpd/lighttpd1.4/trunk lighttpd1.4
cd lighttpd1.4
# subsequent updates (to obtain latest source)
#cd lighttpd1.4
svn update
</pre>
* source release/snapshot
https://www.lighttpd.net/download/
https://download.lighttpd.net/lighttpd/
<pre>
# download and extract tarball
latest=$(curl -s https://download.lighttpd.net/lighttpd/releases-1.4.x/latest.txt)
curl -o $latest.tar.xz https://download.lighttpd.net/lighttpd/releases-1.4.x/$latest.tar.xz
tar -xJf $latest.tar.xz
cd $latest
</pre>
h3. build prerequisites
lighttpd supports multiple build frameworks: automake, cmake, meson, and scons.
Ensure you have installed the latest development tools and packages available, e.g. for automake:
* autoconf
* automake
* libtool
* m4
A minimal lighttpd build typically leverages PCRE and pkg-config
* pcre-devel / libpcre3-dev
* pkg-config
Optional lighttpd modules may require one or more additional libraries, e.g. choices among TLS modules
* openssl
* gnutls
* mbedtls
* nss
* wolfssl
Further details can be found in "lighttpd INSTALL"://git.lighttpd.net/lighttpd/lighttpd1.4/src/branch/master/INSTALL *(Please read)*
Depending on which features you want, other development libraries may be needed: [[OptionalLibraries]]
On most systems you need to install the development version of the library packages; the library itself will not be enough!
On debian you can also use apt-get to install all lighttpd build dependencies: @apt-get build-dep lighttpd@
h3. build commands (examples)
automake
<pre>
#cd lighttpd1.4
./autogen.sh
./configure -C --prefix=/usr/local # ./configure --help for additional options
make -j 4
make check
#sudo make install
</pre>
cmake
<pre>
#cd lighttpd1.4
cmake -DCMAKE_INSTALL_PREFIX=/usr/local -Wno-dev .
make -j 4
make test
#sudo make install
</pre>
meson
<pre>
#cd lighttpd1.4
meson setup --prefix /usr/local build
cd build
meson compile
meson test
#sudo meson install
</pre>
scons
<pre>
#cd lighttpd1.4
scons -j 4 build_static=1 build_dynamic=0 prefix=/usr/local
#sudo scons -j 4 build_static=1 build_dynamic=0 prefix=/usr/local install
</pre>
Examples commands for more fully-featured builds might reference "lighttpd scripts/ci-build.sh"://git.lighttpd.net/lighttpd/lighttpd1.4/src/branch/master/scripts/ci-build.sh
Also, there are more options for [[RunningUnitTests|running unit tests]]
h3. distro packaging (external examples)
Debian: "debian/control":https://salsa.debian.org/debian/lighttpd/-/blob/master/debian/control
Fedora: "lighttpd.spec":https://src.fedoraproject.org/rpms/lighttpd/blob/rawhide/f/lighttpd.spec
OpenWRT: "net/lighttpd/Makefile":https://github.com/openwrt/packages/blob/master/net/lighttpd/Makefile
h3. running lighttpd from build tree
lighttpd can be run from the build tree, without needing to install it. This is useful for testing. In the shell in which you built lighttpd, chdir to the top of the source tree (if not already there).
Create a basic lighttpd.conf to listen on localhost port 8080 and serve files from @/tmp@ (not recommended for production use!):
<pre>
server.document-root = "/tmp"
server.bind = "127.0.0.1"
server.port = 8080
mimetype.assign = (".txt" => "text/plain", ".html" => "text/html" )
</pre>
Create a simple file to serve: @echo "Hello World!" > /tmp/hello.txt@
Run lighttpd in the foreground: @src/lighttpd -D -f lighttpd.conf -m $PWD/src/.libs@
In a different shell: @curl http://127.0.0.1:8080/hello.txt@
In the shell running lighttpd, press press @Ctrl-C@ to cause lighttpd to exit.
h3. signals
lighttpd responds to the following signals:
* SIGTERM - shut down immediately (terminate existing connections, then exit)
* SIGINT - shut down gracefully (serve existing connections, then exit)
* SIGUSR1 - reload gracefully (serve existing connections, then reload config)
* SIGHUP - re-open log files (NOTE: does not reload lighttpd configuration)
(Note: SIGUSR1 behavior is available in lighttpd 1.4.46 and later)
h3. graceful restart
https://blog.lighttpd.net/articles/2005/09/02/graceful-restart/
The current recommended way to reload lighttpd config is to gracefully stop and then to restart lighttpd.
With lighttpd 1.4.46 and later, SIGUSR1 is the recommended method to gracefully handle configuration reloads and log rotation, though a graceful stop and then restart of lighttpd is still required for lighttpd configurations which chroot.
h3. initscripts
Depending on the operating system and distribution brand, there are many ways to set up lighttpd to run as a daemon when the system starts up, and to send signals to lighttpd for start/stop/restart/etc. Rather than attempting to maintain scripts for an unknown number of distros, here are links to a few, which can be used as examples.
* Arch: https://git.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/lighttpd
* Debian: https://salsa.debian.org/debian/lighttpd
* Fedora: http://pkgs.fedoraproject.org/cgit/rpms/lighttpd.git/tree/
* Gentoo: https://gitweb.gentoo.org/repo/gentoo.git/tree/www-servers/lighttpd/files
* openSUSE: https://build.opensuse.org/package/show/server:http/lighttpd
sample systemd unit script "lighttpd.service":https://redmine.lighttpd.net/projects/lighttpd/repository/revisions/master/entry/doc/systemd/lighttpd.service
h3. supervise
As an alternative to init scripts you can setup a "supervised" lighttpd with daemontools or runit, see [[LighttpdUnderSupervise]]