Apache
Nginx as reverse proxy cache for wordpress and apache
1. Install Nginx * Install from PPA * Install using self build packages 2. General Nginx Settings Edit “/etc/nginx/nginx.conf” and modify or insert the following settings: [...] http { [...] # Gzip Settings gzip on; gzip_disable “msie6″; gzip_buffers 32 8k; gzip_comp_level 6; gzip_http_version 1.0; gzip_min_length 0; gzip_types text/html text/css image/x-icon application/x-javascript application/javascript text/javascript application/atom+xml application/xml [...]
Install Tomcat 7 on Debian (Lenny) with virtual hosts and Apache2 integration
This article is a new version of my Apache Tomcat 6 article. This article describes how to install Apache Tomcat 7 on Debian Lenny, Apache2 integration and virtual hosts. Tocat 7 is not available over the regular sources on Debain Lenny (and Etch) it need to be installed by hand. Tomcat 7 is still BETA. [...]
Adobe Coldfusion 9 – Debian 5.0 Lenny – Ubuntu 9.10 or 10.04
Install Apache2 webserver: aptitude install apache2 Install required libraries: aptitude install libstdc++5 Install coldfusion: Download the coldfusion installation paket (Linux bin-file) from www.adobe.com. You can use the Trial Edition and upgrade later to the full version by enter the serial number in the administration webinterface Make the downloaded file executeable and run the installer: chmod [...]
Secure Apache only for other networks
I was ask how to secure an apache 2 webserver, so that the web page is only available for the local network. I need this for an BETA environment and for my Debian Router Project. Here are some simple examples: (192.168.5.0/24 is the LAN you may have to change it) 1. Allow only local network [...]
Install Coldfusion 8 Multiserver on Debian 5.0 Lenny with Apache 2
This article describes, how to install Adobe Coldfusion 8 with Multiserver configuration. You can use this configuration for an ISP like coldfusion setup. Each instance/virtual host will have its own Coldfusion administrator with custom settings. 1. Prerequirements: * Apache 2 is installed and running correctly. * libstdc++5 is installed. aptitude install libstdc++5 * You have [...]
Create an iCalendar server with debian 5.0 lenny
First you need an working apache2 webserver with mod “dav_fs”. If you want iCal over SSL you need a configurated “mod_ssl” on your apache2 webserver. a2enmod dav_fs Next step is the apache configuration: Insert this in your “virtualhost” configuration. Alias /iCalendar /your/path/to/iCalendar <location /iCalendar> DAV On </location> Now you can create a new calendar with [...]
Secure Apache 2 with mod-security 2 on Debian Lenny
This article describes how to install mod_security2 on Debian Lenny. It should work on Etch, too. On the http://www.modsecurity.org website there is a link to the mod_security2 pakets for Debian. (Community-Produced Binary packages) Note: You should check this website for the latest versions and change the example “wget” commands in this howto. 1. Download the [...]
Log Apache2 access log into a MySQL database on Debian Lenny
This article describes how you can log your apache access log entries into a MySQL database. You need a installed and configurated Apache2 webserver and MySQL server. Installation: On the webserver: aptitude install libapache2-mod-log-sql-mysql a2enmod unique_id On the database server: Create a new database “apachelogs” and a user for this database. Configurate a virtual host: [...]
Deploy Adobe Coldfusion 8 on Tomcat 6 in a virtual host environment
This article describes how to deploy the Adobe Coldfusion 8 server on Tomcat in a virtual hosts environment. Please read my Apache Tomcat 6 Article for the base setup. If you install the coldfusion server in seperate virtual hosts, each will have an own coldfusion administrator with own settings. 1. Download First download the coldfusion-801-lin.bin [...]
Deploy OpenBlueDragon on Tomcat 6 in a virtual host environment
This article describes how to deploy OpenBlueDragon server on Tomcat in a virtual hosts environment. Please read my Apache Tomcat 6 Article for the base setup. If you install the BlueDragon server in seperate virtual hosts, each will have an own coldfusion administrator with own settings. 1. Download Download “J2EE WAR Distribution” from http://www.openbluedragon.org/download.cfm. 2. [...]

