| Subcribe via RSS

CentOS 5 Apache 2.2.3 files failing to download or…

Июнь 23rd, 2010 | No Comments | Posted in Apache, modules

Recently, I noticed something strange about Apache 2.2.3 version running on CentOS Linux 5 64 bit version. We have centralized NFS server and all 3 web server load balanced using hardware front end (another box running LVS).

All Apache server picks up file via NFS i.e DocumentRoot is set over NFS. The small file such as 2 MB or 5 MB get downloaded correctly but large size files failed to download. Another problem was some clients reported that the file get download but cannot open due to file corruption issue.

More »

Tags:

Howto install nginx webserver in Debian

Июнь 22nd, 2010 | No Comments | Posted in Apache, modules

If you’re new here, you may want to subscribe to my RSS feed . Thanks for visiting!

Nginx (pronounced “engine x”) is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. Written by Igor Sysoev in 2005, Nginx now hosts between 1% and 4% of all domains worldwide .Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption.

More »

Tags:

/etc/httpd/conf/httpd.conf

Июнь 21st, 2010 | No Comments | Posted in Apache, modules

The httpd.conf file is the main configuration file for the Apache web server. A lot options exist, and it’s important to read the documentation that comes with Apache for more information on different settings and parameters. The following configuration example is a minimal working configuration file for Apache, with SSL support. Also, it’s important to note that we only comment the parameters that relate to security and optimization, and leave all the others to your own research.

More »

Tags:

Gentoo – Apache, PHP, Mysql

Июнь 20th, 2010 | No Comments | Posted in Apache, modules

Abstract:

This document outlines the installation of a web server running Apache, PHP, and Mysql.

The assumption is that you are starting from a fresh Gentoo install, see here .

Set the USE flags in /etc/make.conf to look like this: USE=»-alsa -arts -cups -gnome -gtk -ldap -mpeg -opengl -qt -X -xv \ apache2 curl dba exif expat gd imagemagick jpeg mysql pcre vhosts xml»

More »

Tags:

Amazon.com: Beginning PHP5, Apache, and MySQL Web …

Июнь 19th, 2010 | No Comments | Posted in Apache, modules

Customers Viewing This Page May Be Interested in These Sponsored Links   ( What’s this? )

    Database Monitoring Tool opens new browser window

www.manageengine.com   -   Monitor DB Performance Alerts & Reports. Try Now!

    ExtJS extension for PHP opens new browser window

www.ext4yii.com   -   Professional ExtJS extension for PHP /Yii Framework

More »

Tags:

Booting nginx and mongrel_cluster with init script…

Июнь 18th, 2010 | No Comments | Posted in Apache, modules

Once you get your Rails app up you want it to stay up, even if the power goes out and forces a reboot at your hosting facility. This means getting some startup scripts into /etc/init.d for mongrel and nginx .

I’m using Ubuntu Dapper for these examples. Any Debian based distro should be nearly the same.

More »

Tags:

Apache authentication and authorization using LDAP

Июнь 17th, 2010 | No Comments | Posted in Apache, modules

Note: Comments are owned by the poster. We are not responsible for their content.

Shouldn’t there be a bind call to the LDAP user first inorder for the module to access and search the ldap tree?

Re: Apache authentication and authorization using LDAP Posted by: walt-sjc on October 31, 2007 05:33 PM

More »

Tags:

mod_authnz_ldap

Июнь 16th, 2010 | No Comments | Posted in Apache, modules

supports the following features: Known to support the OpenLDAP SDK (both 1.x and 2.x), Novell LDAP SDK and the iPlanet (Netscape) SDK. Complex authorization policies can be implemented by representing the policy with LDAP filters. Uses extensive caching of LDAP operations via mod_ldap . Support for LDAP over SSL (requires the Netscape SDK) or TLS (requires the OpenLDAP 2.x SDK or Novell LDAP SDK).

More »

Tags:

Using Nginx as a Reverse Proxy to Get the Most Out…

Июнь 15th, 2010 | No Comments | Posted in Apache, modules

If you’re new here, you may want to subscribe to my RSS feed and if you have questions related to your ubuntu system post question to our forums . Thanks for visiting!

Unravel The Music is a small startup; by that I mean we have no money, no financing, and we are owned and operated by two people. Therefore it is important that we get the most out of our server in terms of performance and cost and we have to do this without having to spend hours worrying about the server when we could be improving our design or code.

More »

Tags:

nginx proxy loadbalacing

Июнь 14th, 2010 | No Comments | Posted in Apache, modules

One of many uses of NGINX is http/https proxy load balancing. This guide is Debian specific so your milage with other flavors may vary. In this example we always redirect http to https.

The main nginx configation file is /etc/nginx/nginx.conf and below is a sample configuration file:

user www-data; worker_processes 5; error_log /var/log/nginx/error.log; pid /var/run/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; access_log /var/log/nginx/access.log; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; tcp_nodelay on; #gzip on; upstream lb2 { server 10.0.0.10; #webserver10 server 10.0.0.20; #webserver20 } include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; }

More »

Tags: