Linux Tutorials on the topic “apache”
-
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.
-
Running Vhosts Under Separate UIDs/GIDs With Apache2 mpm-itk On Debian Etch
Author: Falko Timme • Tags: apache, debian • Comments: 6
Running Vhosts Under Separate UIDs/GIDs With Apache2 mpm-itk On Debian Etch This article explains how you can install and configure apache2-mpm-itk on a Debian Etch server. apache2-mpm-itk is an MPM (Multi-Processing Module) for the Apache 2 web server. mpm-itk allows you to run each of your vhost under a separate UID and GID - in short, the scripts and configuration files for one vhost no longer have to be readable for all the other vhosts. mpm-itk works with mod_php because mpm-itk is based on the traditional prefork MPM, which means it's non-threaded. This means you don't need to use suExec or suPHP anymore to run a website's PHP scripts as a separate user.
-
How To Install Django On Mandriva 2008.1 (Apache2/mod_python)
Author: Falko Timme • Tags: apache, mandriva • Comments: 0How To Install Django On Mandriva 2008.1 (Apache2/mod_python) This tutorial explains how to install Django on a Mandriva 2008.1 server. Django is a web framework that allows to develop Python web applications quickly with as much automation as possible. I will use it with Apache2 and mod_python in this guide.
-
-
How To Install Django On Fedora 9 (Apache2/mod_python)
Author: Falko Timme • Tags: apache, fedora • Comments: 2How To Install Django On Fedora 9 (Apache2/mod_python) This tutorial explains how to install Django on a Fedora 9 server. Django is a web framework that allows to develop Python web applications quickly with as much automation as possible. I will use it with Apache2 and mod_python in this guide.
-
How To Install Django On Debian Etch (Apache2/mod_python)
Author: Falko Timme • Tags: apache, debian • Comments: 8How To Install Django On Debian Etch (Apache2/mod_python) This tutorial explains how to install Django on a Debian Etch server. Django is a web framework that allows to develop Python web applications quickly with as much automation as possible. I will use it with Apache2 and mod_python in this guide.
-
Embedding Python In Apache2 With mod_python (Debian/Ubuntu, Fedora/CentOS, Mandriva, OpenSUSE)
Author: Falko Timme • Tags: apache, centos, debian, fedora, mandriva, suse, ubuntu • Comments: 0Embedding Python In Apache2 With mod_python (Debian/Ubuntu, Fedora/CentOS, Mandriva, OpenSUSE) This tutorial shows how to install and use mod_python on various distributions (Debian/Ubuntu, Fedora/CentOS, Mandriva, OpenSUSE) with Apache2. mod_python is an Apache module that embeds the Python interpreter within the server. It allows you to write web-based applications in Python that will run many times faster than traditional CGI and will have access to advanced features such as ability to retain database connections and other data between hits and access to Apache internals.
-
How To Block Spammers/Hackers With mod_defensible On Apache2 (Debian Etch)
Author: Falko Timme • Tags: apache, debian, security • Comments: 7
How To Block Spammers/Hackers With mod_defensible On Apache2 (Debian Etch) mod_defensible is an Apache 2.x module intended to block spammers/hackers/script kiddies using DNSBL servers. It will look at the client IP and check it in one or several DNSBL servers and return a 403 Forbidden page to the client. This guide shows how to install and use it with Apache 2 on a Debian Etch server.
-
Apache2: Logging To A MySQL Database With mod_log_sql (Debian Etch)
Author: Falko Timme • Tags: apache, mysql, debian • Comments: 5Apache2: Logging To A MySQL Database With mod_log_sql (Debian Etch) This guide shows how you can write the Apache2 access log to a MySQL database instead of a file. To achieve this, I use the Apache2 module mod_log_sql. I'm using a Debian Etch server in this tutorial.
-
Embedding Python In Apache2 With mod_python (Debian Etch)
Author: Falko Timme • Tags: apache, debian • Comments: 9Embedding Python In Apache2 With mod_python (Debian Etch) This tutorial shows how to install and use mod_python on a Debian Etch server with Apache2. mod_python is an Apache module that embeds the Python interpreter within the server. It allows you to write web-based applications in Python that will run many times faster than traditional CGI and will have access to advanced features such as ability to retain database connections and other data between hits and access to Apache internals.
-
How To Set Up WebDAV With MySQL Authentication On Apache2 (Debian Etch)
Author: Falko Timme • Tags: apache, debian, mysql • Comments: 2
How To Set Up WebDAV With MySQL Authentication On Apache2 (Debian Etch) This guide explains how to set up WebDAV with MySQL authentication (using mod_auth_mysql) on Apache2 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 Apache 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.