Category: Web

Apache (16)
GlassFish (0)
HAProxy (2)
IIS (20)
Nginx (55)
Other (4)
Tomcat (17)

How to Install Apache 2.2 with PHP 5.2.17 on Windows

1. Required Software
1. httpd-2.2.19-win32-x86-openssl-0.9.8r.msi, (No 64-bit Apache for Windows installer is available at this time)
2. php-5.2.17-Win32-VC6-x86.zip (No 64-bit PHP for Windows build is available at this time; the PHP Thread Safe version is selected here …

Nginx Configuration File nginx.conf: A Complete Guide

PS: I’ve been using Nginx for two to three years now, and I often encounter new users asking some very basic questions. I don’t have time to answer them one by one, so this afternoon I spent some time compiling a share of the main Nginx configuration parameter explanations based on my own experience, also referencing some online content. This is currently the most complete Nginx configuration guide…

How to Install LNMP Stack with One Command

System Requirements: CentOS/Debian/Ubuntu Linux systems need 2GB+ of free disk space and 128MB+ of RAM. For OpenVZ, 192MB+ is recommended (do not use a 64-bit system with low memory). The VPS or server must have an active internet connection! Linux is case-sensitive, so please pay attention when entering commands! LNMP one-click installation package V1 …

Nginx Bandwidth Limiting in LNMP Environments

I was looking into bandwidth throttling recently — out of pure boredom, really. For one, I don’t have any site that people are flocking to and relentlessly leeching data from, and for another, I honestly just didn’t know what else to tinker with… Bandwidth limiting under Nginx seems relatively straightforward. Below is the testing process I ran between two VPS instances, using a BlueVM $9.95/mo…

How to Install Nginx and PHP-FPM via YUM on CentOS 6

原文地址:http://www.lifelinux.com/how-to-install-nginx-and-php-fpm-on-centos-6-via-yum/ Before installing Nginx and PHP-FPM, you must remove any previously installed Apache and PHP from your system. Log in as root and enter the following command: # yum remove htt …

How to Yum Install Nginx on CentOS

Installing Nginx on Ubuntu is straightforward—just run `apt-get install nginx`. However, today I set up CentOS 6.2, and `yum install nginx` didn’t work right away. You need to configure the repository first. Here’s the complete installation process, which is also very simple: 1. For CentOS 6, first run:
rpm -ivh http://nginx.org/package …

Nginx Start, Restart, and Stop Commands

Stop OperationStopping Nginx is performed by sending signals to the Nginx process (for what signals are, please refer to Linux articles). Step 1: Find the Nginx master process IDps -ef | grep nginxLook for the master process in the process list; its number is the master process ID. Step 2: Send the signalGracefully stop N …