Linux Tutorials on the topic “apache”
-
Apache2-SSL-PHP5-Howto (+ Zend Optimizer And IonCube Loader)
Author: Falko Timme • Tags: apache, php • Comments: 6Apache2-SSL-PHP5-Howto (+ Zend Optimizer And IonCube Loader) This document describes how to install an Apache web server (2.0.x) with SSL and PHP5 (with Zend Optimizer and ionCube Loader) enabled.
-
Running Apache2 With PHP5 And PHP4 At The Same Time
Author: Falko Timme • Tags: apache, php • Comments: 6Running Apache2 With PHP5 And PHP4 At The Same Time This tutorial shows how to install and configure Apache2 with PHP5 and PHP4 enabled at the same time. Because it is not possible to run both PHP5 and PHP4 as Apache modules, we must run one of them as CGI, the other one as Apache module. In this document I will use PHP5 as Apache module and PHP4 as CGI, and I will describe the setup for the Linux distributions Debian Sarge (3.1) and Ubuntu 5.10 (Breezy Badger).
-
How do I create SSL certificates with OpenSSL on the command line?
Author: Falko Timme • Tags: apache • Comments: 0
You do it like this: openssl genrsa -des3 -passout pass:yourpassword -out /path/to/your/key_file 1024 openssl req -new -passin pass:yourpassword -passout pass:yourpassword -key /path/to/your/key_file -out /path/to/your/csr_file -days 365 openssl req -x509 -passin pass:yourpassword -passout pass:yourpassword -key /path/to/your/key_file -in /path/to/your/csr_file -out /path/to/your/crt_file -days 365 openssl rsa -passin pass:yourpassword -in /path/to/your/key_file -out /path/to/your/key_file2 chmod 400 /path/to/your/key_file2
-
-
Apache2-Frontpage2002-Howto
Author: joshua • Tags: apache • Comments: 2Author: Joshua Levitsky Installation Instructions Installation on a Fedora Core 1 box: Mandrake instructions can be found here; http://www.newwebsite.com/mandrake.html and Red Hat 9 instructions are located at John Spencer's site. (Note that John Spencer's instructions were used to create the Fedora documentation here.)
-
mod_gzip - serving compressed content by the Apache webserver
Author: michael_schroepl • Tags: apache • Comments: 0Author: Michael Schröpl mod_gzip - serving compressed content by the Apache webserver mod_gzip - what's that, anyway? mod_gzip is an external extension module for the WWW's most popular web server Apache, created in autumn, 2000. Its implementation allows for using the compression method gzip for a significant reduction of the volume of web page content served over the HTTP protocol.
-
Configuring Apache for Maximum Performance
Author: bobcares • Tags: apache • Comments: 8Apache server performance can be improved by adding additional hardware resources such as RAM, faster CPU etc. But, most of the time, the same result can be achieved by custom configuration of the server. This article looks into getting maximum performance out of Apache with the existing hardware resources, specifically on the Linux systems.
-
Manage Apache Download Speed And Traffic Limits With mod_cband
Author: Falko Timme • Tags: apache • Comments: 16Manage Apache Download Speed And Traffic Limits With mod_cband In this tutorial I will describe how to install and configure mod_cband on an Apache2 web server. mod_cband is an Apache 2 module which provides bandwidth quota and throttling. It solves the problem of limiting users' and virtualhosts' bandwidth usage. The current version can set virtualhosts' and users' bandwidth quotas, maximal download speed, requests-per-second speed and the maximal number of simultanous IP connections.
-
How To Set Up suPHP With PHP4 And PHP5
Author: Falko Timme • Tags: apache, php • Comments: 7How To Set Up suPHP With PHP4 And PHP5 This tutorial shows how to install and use suPHP with PHP4 and PHP5. suPHP is a tool for executing PHP scripts with the permissions of their owners instead of the Apache user. With the help of suPHP you can also have PHP4 and PHP5 installed at the same time which I will describe at the end of this article. suPHP integrates into Apache2 as a module. At the time of this writing it does work with Apache2 prior to version 2.2. Version 2.2 is not supported yet.
-
Secure Your Apache With mod_security
Author: Falko Timme • Tags: apache • Comments: 10Secure Your Apache With mod_security This article shows how to install and configure mod_security. mod_security is an Apache module (for Apache 1 and 2) that provides intrusion detection and prevention for web applications. It aims at shielding web applications from known and unknown attacks, such as SQL injection attacks, cross-site scripting, path traversal attacks, etc.
-
Security Testing your Apache Configuration with Nikto
Author: xenlab • Tags: apache, security • Comments: 11Security Testing your Apache Configuration with Nikto By now you've got the perfect setup for your new Ubuntu 6.0.6 (Dapper Drake) box. You may have even followed the excellent Intrusion Detection and Prevention with BASE and Snort tutorial. And as an added precaution you installed DenyHosts to prevent hack attempts via ssh. But now that you've got your new LAMP server on the internet, how can you tell that your new web server is secure? You test it, of course!