Book Image

CentOS System Administration Essentials

By : Andrew Mallett
Book Image

CentOS System Administration Essentials

By: Andrew Mallett

Overview of this book

If you are a Linux administrator who is looking to gain knowledge that differentiates yourself from the crowd, then this is the book for you. Beginners who have a keen interest to learn more about Linux administration will also progress quickly with this resourceful learning guide.
Table of Contents (13 chapters)
12
Index

Installing and configuring Nginx


To begin this chapter, we will need to install the web server Nginx on our CentOS system. Nginx is the new kid on the block in terms of web servers, but in recent surveys from NetCraft, http://www.netcraft.com, we have seen that the Internet has fallen a little out of love with Apache, with Nginx making steady rises since its introduction in 2004. That said, in May 2014, Apache still had 37 percent of the web server share with Microsoft at 33 percent and Nginx at 14 percent.

Installing Nginx

Nginx is not part of the standard repositories, but we can use the EPEL repository that we used to install the 389-ds we looked at in Chapter 7, LDAP – A Better Type of User. With the Extra Packages for Enterprise Linux (EPEL) repository in place, we can install using yum, and then once we have Nginx installed, we can start the service and configure it with chkconfig to start on the system boot:

# yum install nginx
# service nginx start
# chkconfig nginx on

There is a welcome...