Linux Tutorials on the topic “lighttpd”
-
Splitting lighttpd Logs With vlogger And Creating Statistics With Webalizer
Author: Falko Timme • Tags: debian, lighttpd • Comments: 0Splitting lighttpd Logs With vlogger And Creating Statistics With Webalizer Vlogger is a little tool with which you can write lighttpd logs broken down by virtual hosts and days. With vlogger, we need to put just one accesslog.filename directive into our global lighttpd configuration, and it will write access logs for each virtual host and day. Therefore, you do not have to split lighttpd's overall access log into access logs for each virtual host each day, and you do not have to configure lighttpd to write one access log per virtual host (which could make you run out of file descriptors very fast). At the end of this tutorial I will show you how to use webalizer to create statistics from the lighttpd access logs.
-
Installing Lighttpd With PHP5 And MySQL Support On Fedora 8
Author: Falko Timme • Tags: fedora, lighttpd, php • Comments: 1Installing Lighttpd With PHP5 And MySQL Support On Fedora 8 Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on a Fedora 8 server with PHP5 support (through FastCGI) and MySQL support.
-
Reduce Apache's Load With lighttpd On Debian Etch
Author: axman • Tags: apache, debian, lighttpd • Comments: 3Reduce Apache's Load With lighttpd On Debian Etch Lighttpd, sometimes pronounced "Lighty", is a lightweight HTTP server that can help alleviate Apache's load by serving static content. Since Lighttpd uses less resources per request than Apache, it generally serves most static content faster than Apache. This tutorial shows how to install Lighttpd behind Apache via Apache´s proxy module.
-
-
Integrating XCache Into PHP5 (Debian Etch & lighttpd)
Author: Falko Timme • Tags: debian, lighttpd, php • Comments: 1Integrating XCache Into PHP5 (Debian Etch & lighttpd) This guide explains how to integrate XCache into PHP5 on a Debian Etch system (with lighttpd). From the XCache project page: "XCache is a fast, stable PHP opcode cacher that has been tested and is now running on production servers under high load." It's similar to other PHP opcode cachers, such as eAccelerator and APC.
-
Installing mod_geoip For Lighttpd On Debian Etch
Author: Falko Timme • Tags: debian, lighttpd • Comments: 0Installing mod_geoip for Lighttpd On Debian Etch This guide explains how to set up mod_geoip with lighttpd on a Debian Etch system. mod_geoip looks up the IP address of the client end user. This allows you to redirect or block users based on their country. You can also use this technology for your OpenX (formerly known as OpenAds or phpAdsNew) ad server to allow geo targeting. I will show two ways to build mod_geoip - the first way is to build a new lighttpd .deb package (including mod_geoip) which is the way I recommend. This works only if you have installed the standard Debian Etch lighttpd package. If you've compiled lighttpd yourself, then the second way is for you: it shows how to build mod_geoip.so for your lighttpd version.
-
Installing mod_geoip for Lighttpd On Fedora 9
Author: Falko Timme • Tags: fedora, lighttpd • Comments: 1Installing mod_geoip for Lighttpd On Fedora 9 This guide explains how to set up mod_geoip with lighttpd on a Fedora 9 system. mod_geoip looks up the IP address of the client end user. This allows you to redirect or block users based on their country. You can also use this technology for your OpenX (formerly known as OpenAds or phpAdsNew) ad server to allow geo targeting.
-
Creating Simple Virtual Hosts With mod_mysql_vhost On Lighttpd (Debian Etch)
Author: Falko Timme • Tags: debian, lighttpd • Comments: 1
This guide explains how you can use mod_mysql_vhost to create simple virtual hosts on a lighttpd web server on Debian Etch. With mod_mysql_vhost, lighttpd can read the vhost configuration from a MySQL database. Currently, you can store the domain and the document root in the MySQL database which results in very simple virtual hosts. If you need more directives for your vhosts, you'd have to configure them in the global section of lighttpd.conf, which means they'd be valid for all vhosts. Therefore, mod_mysql_vhost is ideal if your vhosts differ only in the domain and document root.
-
How To Set Up WebDAV With Lighttpd On Debian Etch
Author: Falko Timme • Tags: debian, lighttpd • Comments: 1
How To Set Up WebDAV With Lighttpd On Debian Etch This guide explains how to set up WebDAV with lighttpd on a Debian Etch server. WebDAV stands for Web-based Distributed Authoring and Versioning and is a set of extensions to the HTTP protocol that allow users to directly edit files on the lighttpd server so that they do not need to be downloaded/uploaded via FTP. Of course, WebDAV can also be used to upload and download files.