Installing and configuring lighttpd webserver – HOWTO

by nixcraft · 18 comments

Lighttpd logo

lighttpd is a web server for UNIX/Linux and Windows operating systems. It is an alternative to Apache web server. It is also called Lighty.

It is designed to be secure, fast, standards-compliant, and flexible while being optimized for speed-critical environments. Its low memory footprint (compared to other web servers), light CPU load and its speed goals make lighttpd suitable for servers that are suffering load problems. Visit official site for more information.

This document shows you how to install lighttpd and covers basic configuration.

Installing lighttpd

If you are using RPM based distro (RedHat, Fedora and friends) download RPM and other formats here. Binary RPM is here

Download Fedora Core RPM Binary:

$ cd /tmp
$ wget http://lighttpd.net/download/lighttpd-1.4.13-1.i386.rpm
$ su -
# rpm -ivh lighttpd-1.4.13-1.i386.rpm

Now skip to configuration section.

Debian Linux user use apt-get command to install lighttpd:

# apt-get install lighttpd

Now skip to configuration section.

Source code installation

Above RPM binary does not carries mod_rewrite and other stuff, so I had decided to rebuild lighttpd from source code (note source code installation is recommended for advanced users only):
$ cd /tmp

Get latest source code:
$ wget http://lighttpd.net/download/lighttpd-1.4.13.tar.gz

Untar tar ball:
$ tar -zxvf lighttpd-1.4.13.tar.gz
$ cd lighttpd-1.4.13

Configure lighttpd with ./configure

$ ./configure --host=i686-redhat-linux-gnu \
--build=i686-redhat-linux-gnu \
--target=i386-redhat-linux \
--program-prefix= --prefix=/usr \
--exec-prefix=/usr \
--bindir=/usr/bin \
--sbindir=/usr/sbin \
--sysconfdir=/etc \
--datadir=/usr/share \
--includedir=/usr/include \
--libdir=/usr/lib \
--libexecdir=/usr/libexec \
--localstatedir=/var \
--sharedstatedir=/usr/com \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--with-openssl \
--with-pcre \
--with-zlib \
--with-bzip2 \
--disable-ipv6 \
--with-PACKAGE=mod_redirect \
--with-rewrite \
--with-redirect \
--with-ssi

Above configure option includes support for SSL, mod_rewrite, ssi, mod_redirect etc. Run following command to get help on all other available options:
$ ./configure --help | less

Install lighttpd:
$ make
# make install

Create a configuration directory:
# mkdir /etc/lighttpd/

Create lighttpd user and group:
# groupadd lighttpd
# useradd -g lighttpd -d /var/www/html -s /sbin/nologin lighttpd

OR
# adduser -g lighttpd -d /var/www/html -s /sbin/nologin lighttpd

Create a log directory:
# mkdir /var/log/lighttpd
# chown lighttpd:lighttpd /var/log/lighttpd

Download sample config and startup files:
# cd /etc/lighttpd
# wget http://www.cyberciti.biz/tips/wp-content/uploads/2006/07/lighttpd.conf.txt
# mv lighttpd.conf.txt lighttpd.conf
# chown lighttpd:root /etc/lighttpd/lighttpd.conf
# cd /etc/init.d/
# wget http://www.cyberciti.biz/tips/wp-content/uploads/2006/07/lighttpd.txt
# mv lighttpd.txt lighttpd
# chmod +x lighttpd

Configuring lighttpd

Following are important files for lighttpd server:

  • The default lighttpd configuration file: /etc/lighttpd/lighttpd.conf (download sample lighttpd.conf file)
  • Service startup script: /etc/init.d/lighttpd (download sample lighttpd file)

These files are installed by default for all binary installations methods. Now lighttpd installed and it is time to configure lighttpd.

Remove apache

If you are not going to use Apache v1.3/2.x at all, then it is better to remove it (make sure you have a backup of Apache data and config file):
# rpm -e httpd
# yum remove httpd
# apt-get remove apache2

Understanding core lighttpd Directives

Following are core lighttpd Directives:

  • server.document-root = "/var/www/html": Specifies default document-root for your server.
  • server.port = 80: Specifies default http port for your server.
  • server.username = "lighttpd"
  • server.groupname = "lighttpd": Specifies default username and groups to start/stop lighttpd server. This is a security feature (as it drops root privileges).
  • server.bind = "server-ip-address": Specify server ip-address. You can also specify hostname such as theos.in.
  • server.tag ="lighttpd": Use to setup lighttpd name and version number (default). This is security feature. You can setup it as follows:
    server.tag ="myWebServer v1.0"
    Please note that this name is reported by the Server response header (you can see it using netcraft)
  • server.errorlog = "/var/log/lighttpd/error.log": Specify the error-log file.
  • accesslog.filename = "/var/log/lighttpd": Specify the accesslog file name (use to generate stats using stats software).
  • index-file.names = ( "index.php", "index.html" ): A list of files to search for if a directory is requested.

server.modules = (
"mod_access",
"mod_accesslog",
"mod_fastcgi",
"mod_rewrite",
"mod_auth"
)
: Above modules are loaded by lighty:

  • mod_access: The access module is used to deny access to files with given trailing path names.
  • mod_accesslog: Use to write CLF log, flexible like apache
  • mod_fastcgi : FastCGI for perl/PHP etc
  • mod_rewrite : Good for writing SEO urls
  • mod_auth: Authntication (password protected directory)

mimetype.assign = (
".pdf" => "application/pdf",
".sig" => "application/pgp-signature"
)
: Use to setup mimetype mapping.

Open file /etc/lighttpd/lighttpd.conf and setup all of the above directives:
# vi /etc/lighttpd/lighttpd.conf

Save the file and start the lighttpd:
# /etc/init.d/lighttpd start

Verify that lighttpd is running:
$ netstat -ntulp

Output:

Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      29855/sshd
tcp        0      0 203.111.103.81:80           0.0.0.0:*                   LISTEN      5866/lighttpd
...
.....
..

Fire your web browser and test new setup by typing URL: http://your-domain.com/ or http://server-ip/

Next time I will cover following topics:

Lighttpd How to

Lighttpd security

Lighttpd software configuration how-tos

Lighttpd Server Monitoring

Lighttpd Troubleshooting

Download: Lighttpd Sample config and RPM files

This is regularly updated series. Last Updated on 10-Dec-2006 by nixCraft.

Featured Articles:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 18 comments… read them below or add one }

1 Srinivasan R 07.08.06 at 11:24 am

I would really like to know how to setup cgi-bin and to execute cgi applications in lighttpd.

2 nixcraft 07.09.06 at 8:23 am

Add mod_cgi to server.modules i.e following command:
server.modules += ( “mod_cgi” )

Add alias url:
alias.url += ( “/cgi-bin/” => “/var/www/cgi-bin/” )

Add following url:
$HTTP["url"] =~ “/cgi-bin/” {
cgi.assign = ( “.pl” => “/usr/bin/perl” )
}

I will cover detailed article later on

3 Gerard 10.14.06 at 5:51 pm

About ./configure:
I really doubt you would need all those options, configure can figure them out itself, for example –host=i686-redhat-linux-gnu or all those directories.

4 nixcraft 10.18.06 at 7:58 pm

You can skip following
–build=i686-redhat-linux-gnu \
–target=i386-redhat-linux \

But rest is required to make sure /etc/init.d/lighttpd and other scripts find them.

5 LavaLamp 12.09.06 at 8:48 pm

Hi!

This is an excellent collection. I would like to see more tutorials and configuration howtos – Rub on Rails and Python lighttpd configuration.

Thanks for all wonderful tutorials.

6 TECK 04.19.07 at 5:31 am

Hi nixcraft,

I was wondering if you could look the RPM I built on CentOS5 and tell mw what I did wrong:
fbytes.com/lighttpd-1.4.15-1.src.rpm

For some reason, the memcache option is disabled.
If I use the 1.4.13 archive everything is ok, so I believe is lighty bug.

Thanks for your help.

7 Premkumar 05.09.07 at 10:44 pm

Hi,

This tutorial is very helpful for my team. Thanks a lot…..

8 kunal 07.23.07 at 10:52 am

This tutorial is very helpful for me.

Thanks a lot !!!!!!!!!

9 Madhavi 09.12.07 at 11:42 am

Hi,

Can we write cgi-bin programs in C and run on lighttpd??

10 vivek 09.12.07 at 4:22 pm

Yes you can write program in c/c++ and run as cgi-bin

11 harish 09.26.07 at 4:48 am

Hi,
this is really nice tutorial and seriously help me a lot but anyone can tell how can i remove flowplayer logo from my fullscreen mode ????

12 Hoteles Mar del Plata 07.05.08 at 6:46 pm

Good Word Server Web Daemon!!!!

Exceln Howto!!!

13 Aaron Fay 10.22.08 at 8:36 pm

Thank you so much, worked like a charm!

14 dendy b sulistyo 01.09.09 at 4:21 pm

when i use apache+php+mysql+wordpress 2.5, the insert image is working.
after following your tutorial, using lighttpd+php+mysql+wordpress 2.5 the insert image is not working. any experience about that ?
is this permition problem ? or ownership ?
thanks

15 Vivek Gite 01.09.09 at 5:50 pm

@ dendy,

Find out if session.save_path (php.ini) exists and owned by lighttpd.

16 V.Balaviswanathan 05.12.09 at 2:11 pm

Thanks a lot for your tutorials

17 txaume 06.18.09 at 1:59 pm

Good tutorial, tanks!
But now, i guess if there’s any way to fix user and only ask for password when youauthenticate any user that tries to load a web hosted in my lighttpd server. I mean, when the usual login popup appears, it has to be something like that:
user:admin
password:
any ideas?
Thanks in advance!

18 Ela 10.01.09 at 3:52 pm

Am using httpd server and am having the error log file problem, file will be created and its size is increasing without end. i already posted three posts. sorry to posted this much times because i need the solution. Please can you find out whats happening exactly.

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post:

Next post: