Linux Tutorials on the topic “apache”
-
The Useful Uses Of Mod Rewrite
Author: MVied • Tags: apache • Comments: 2
In this tutorial, I'm going to be teaching what mod rewrite is and few examples of its uses. Mod rewrite is a powerful tool and one of the simplest ways to make your website more SEO friendly.
-
Installing ehcp (Easy Hosting Control Panel) On Any Debian Or Apt-Get Based Distro, Including Ubuntu
Author: bvidinli • Tags: apache, control panels, debian, dns, ftp, ispconfig, linux, mysql, other, php, postfix, ubuntu • Comments: 6Installing ehcp (Easy Hosting Control Panel) On Any Debian Or Apt-Get Based Distro, Including Ubuntu In this tutorial I will show you howto install ehcp on any debian based distro, or any distro that has apt-get support. ehcp stands for Easy Hosting Control Panel. It may be used by anyone wanting to host multiple domains in his dedicated/vps server. It is a hosting control panel under development.
-
Benchmark: Apache2 vs. Lighttpd (Images)
Author: Falko Timme • Tags: apache, lighttpd • Comments: 11Benchmark: Apache2 vs. Lighttpd (Images) This benchmark shows how Apache2 (version 2.2.3) and lighttpd (version 1.4.13) perform compared to each other when delivering an image file (jpg, about 25KB in size). This benchmark was created with the help of ab (Apache benchmark) on a VMware vm (Debian Etch); if you try this yourself, your numbers might differ (depending on your hardware), but the tendency should be the same.
-
-
Benchmark: Apache2 vs. Lighttpd (Static HTML Files)
Author: Falko Timme • Tags: apache, lighttpd • Comments: 10Benchmark: Apache2 vs. Lighttpd (Static HTML Files) This benchmark shows how Apache2 (version 2.2.3) and lighttpd (version 1.4.13) perform compared to each other when delivering a static HTML file (about 50KB in size). This benchmark was created with the help of ab (Apache benchmark) on a VMware vm (Debian Etch); if you try this yourself, your numbers might differ (depending on your hardware), but the tendency should be the same.
-
How To Manage Apache Resources Limits With mod_slotlimit (Debian Etch)
Author: LucaErcoli • Tags: apache, debian • Comments: 0
How To Manage Apache Resources Limits With mod_slotlimit (Debian Etch) mod_slotlimit is an Apache module that using dynamic slot allocation algorithm and static rules, can manage resources used for each running site.
-
How To Block Spammers/Hackers With Apache2's mod_spamhaus (Debian Etch)
Author: euronymous • Tags: apache, debian • Comments: 9
How To Block Spammers/Hackers With Apache2's mod_spamhaus (Debian Etch) mod_spamhaus is an Apache module that uses DNSBL in order to block spam relay via web forms, preventing URL injection, block http DDoS attacks from bots and generally protecting your web service denying access to a known bad IP address.
-
Installing memcached And The PHP5 memcache Module On Debian Etch (Apache2)
Author: Falko Timme • Tags: apache, php, debian • Comments: 5
Installing memcached And The PHP5 memcache Module On Debian Etch (Apache2) This guide explains how to install memcached and the PHP5 memcache module on a Debian Etch system with Apache2. memcached is a daemon that can store objects in the system's memory (e.g. results of database queries) which can speed up your web site tremendously. You can use memcached over a network (i.e., install your web application on one server and memcached on another server), but usually you install both on one server to avoid the networking overhead.
-
How To Set Up Apache, Tomcat (mod_jk), SSO (CAS, mod_auth_cas)
Author: philipp • Tags: apache, suse • Comments: 2How To Set Up Apache, Tomcat (mod_jk), SSO (CAS, mod_auth_cas) This article describes how you can set up Apache and Tomcat, linked with mod_jk. It also explains how you set up the SSO (single sign on) solution JA-SIG CAS to protect servlets (provided by tomcat) and static content (provided by Apache). I worked with OpenSuse 10.2 and 11, Apache2, Tomcat 5.5 and 6. It should work on other distributions as well.
-
Running Vhosts Under Separate UIDs/GIDs With Apache2 mpm-peruser On Debian Etch
Author: Falko Timme • Tags: apache, debian, security • Comments: 0
Running Vhosts Under Separate UIDs/GIDs With Apache2 mpm-peruser On Debian Etch This article explains how you can install and configure apache2-mpm-peruser on a Debian Etch server. apache2-mpm-peruser is an MPM (Multi-Processing Module) for the Apache 2 web server, very similar to apache2-mpm-itk, but faster (almost as fast as apache2-mpm-prefork). mpm-peruser allows you to run each of your vhosts 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. It is based on metuxmpm, a working implementation of the perchild MPM. The result is a sane and secure web server environment for your users, without kludges like PHP's safe_mode.
-
Setting Up A Subversion Repository Using Apache, With Auto Updatable Working Copy
Author: fahdaziz • Tags: apache • Comments: 6Setting Up A Subversion Repository Using Apache, With Auto Updatable Working Copy Subversion is a free/open-source version control system. That is, Subversion manages files and directories over time. A tree of files is placed into a central repository. The repository is much like an ordinary file server, except that it remembers every change ever made to your files and directories. This allows you to recover older versions of your data, or examine the history of how your data changed. In this regard, many people think of a version control system as a sort of “time machine”.