在CentOS下源码编译安装nginx教程

来源:互联网 发布:国产野牛气垫船知乎 编辑:程序博客网 时间:2024/06/06 02:48

Introduction

nginx pronounced as "engine x" is an HTTP and reverse proxy server, as well as a mail proxy server.

nginx is an opensource web server which uses epoll mechanism to serve clients as opposed to Apache which uses a thread based model which delegates the requests to an instance in the thread pool. nginxis being used more over Apache because of its speed. nginx has over 13% market share and increasing continuously.

Why compile from source

Compiling from the source code is useful when:

  1. Upgrading to the latest version right after the release.
  2. Fixing security vulnerabilities
  3. Fixing known bugs which has been impacting your service
  4. Modifying defaults like the server name
  5. Applying patches with fixing known bugs
  6. Software repositories are not upgraded with the latest version because of the dependency hierarchy

Its painful because:

  1. You need to keep up to date with software versions
  2. Your server software might depend on older versions in the dependency tree

Modules and 3rd Party Modules

nginx has many modules which add features on top of existing VPS. Some of the famous 3rd party modules are:

  • SPDY was included in nginx 1.5.0 (earlier was provided as a patch)
  • google pagespeed(source) speeds up your site and reduces page load time by automatically applying web performance best practices to pages and associated assets (CSS, JavaScript, images) without requiring you to modify your existing content or workflow
  • ModSecurity is an open source web application firewall to reduce known attacks on application servers. *TCP Proxy allows nginx to proxy through tcp server instead of the default socket mode.

Setup your VPS

Create a new VPS or choose an existing one

Create a new VPS with your domain name. We will be using 'example.com' as the domain or you can use the server IP instead of the hostname.

Setting Up Pre-requisites to Compile from Source

Securely Login into your VPS

You can login into the VPS with your password for your host.

ssh root@example.com

Install dependencies for nginx

We have few pre-requisites to be installed to compile which include development libraries along with source code compilers.

yum -y install gcc gcc-c++ make zlib-devel pcre-devel openssl-devel

Lets first create a directory to store our source code:

mkdir -p src && cd src

Compiling from Source

Downloading the source code

Lets get the current nginx version number from http://nginx.org/en/download.html

Run the following commands to download the source.

nginxVersion="1.5.5"
wget http://nginx.org/download/nginx-$nginxVersion.tar.gz
tar -xzf nginx-$nginxVersion.tar.gz
ln -sf nginx-$nginxVersion nginx

Preparing the nginx source

We first want to prepare nginx with necessary basic options.

For a full list of options you can look at ./configure --help

Options for basic file path names

These options are the basic variables which we override to use default system paths at /etc/ to ensure it works simliar when installed via rpm. The user and group option are used to run the nginx worker processes in non-privileged.

--user
--group
--prefix
--sbin-path
--conf-path
--lock-path
--pid-path
--http-log-path
--error-log-path

Other options

  • --with-http_gzip_static_module option enables nginx to use gzip (Before serving a file from disk to a gzip-enabled client, this module will look for a precompressed file in the same location that ends in ".gz". The purpose is to avoid compressing the same file each time it is requested.).[recommended for reducing size of information sent]

  • --with-http_stub_status_module option enables other plugins over nginx to allow us to get the status (This module provides the ability to get some status from nginx.). [recommended for getting stats]

  • --with-http_ssl_module - required if you want to run a HTTPS server. See How To Create a SSL Certificate on nginx for CentOS 6

  • --with-pcre option enables to match routes via Regular Expression Matching when defining routes. [recommended, you will find more use of this once you start adding and matching routes]

  • --with-file-aio - enables asynchronous I/O, better than the default send file option(recommended if you are allowing users to download static files)

  • --with-http_realip_module is used for getting the IP of the client when behind a load balancer. This is useful when serving content behind CloudFlare like services.

  • --without-http_scgi_module - Disable SCGI module (normally used when running CGI scripts)

  • --without-http_uwsgi_module - Disable UWSGI module (normally used when running CGI scripts)

  • --without-http_fastcgi_module - Disable FastCGI module (normally used when running CGI scripts)

Our configuration options

cd nginx
./configure \
--user=nginx \
--group=nginx \
--sbin-path=/usr/sbin/nginx \
--prefix=/etc/nginx \--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--pid-path=/var/run/nginx.pid \--lock-path=/var/run/nginx.lock \
--with-http_stub_status_module \
--http-log-path=/var/log/nginx/access.log \--with-http_gzip_static_module \--with-http_ssl_module \
--without-http_scgi_module \
--with-pcre \--with-file-aio \--with-http_realip_module \--without-http_uwsgi_module \
--without-http_fastcgi_module

Compiling the nginx source

Once we are able to configure the source which even checks for additional requirements like the compiler(gcc, g++) which we installed in the pre-requisites step:

make
make install

Running the VPS

  1. Add the user nginx to the system. This is a one time command:

    useradd -r nginx
  2. We need to setup the file /etc/init.d/nginx to run when system starts:

    #!/bin/sh
    #
    # nginx - this script starts and stops the nginx daemin
    ## chkconfig: - 85 15
    # description: Nginx is an HTTP(S) server, HTTP(S) reverse \
    # proxy and IMAP/POP3 proxy server# processname: nginx
    # user: nginx
    # config: /etc/nginx/nginx.conf# pidfile: /var/run/nginx.pid# Source function library.
    # Check that networking is up.
    . /etc/rc.d/init.d/functions# Source networking configuration.. /etc/sysconfig/network[ "$NETWORKING" = "no" ] && exit 0
    start() {
    nginx="/usr/sbin/nginx"prog=$(basename $nginx)NGINX_CONF_FILE="/etc/nginx/nginx.conf"lockfile=/var/run/nginx.lock [ -x $nginx ] || exit 5
    [ $retval -eq 0 ] && touch $lockfile
    [ -f $NGINX_CONF_FILE ] || exit 6 echo -n $"Starting $prog: " daemon $nginx -c $NGINX_CONF_FILE retval=$? echo return $retval}stop() {
    stop
    echo -n $"Stopping $prog: " killproc $prog -QUIT retval=$? echo [ $retval -eq 0 ] && rm -f $lockfile return $retval}restart() { configtest || return $? start
    $nginx -t -c $NGINX_CONF_FILE
    }reload() { configtest || return $? echo -n $"Reloading $prog: " killproc $nginx -HUP RETVAL=$? echo}force_reload() { restart}configtest() {}rh_status() {
    $1
    status $prog}rh_status_q() { rh_status >/dev/null 2>&1}case "$1" in start) rh_status_q && exit 0 $1 ;; stop) rh_status_q || exit 0 ;;
    condrestart|try-restart)
    restart|configtest) $1 ;; reload) rh_status_q || exit 7 $1 ;; force-reload) force_reload ;; status) rh_status ;;
    esac
    rh_status_q || exit 0 ;; *) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"
    exit 2

    Optionally, you can obtain the source from:

    wget -O /etc/init.d/nginx https://gist.github.com/sairam/5892520/raw/b8195a71e944d46271c8a49f2717f70bcd04bf1a/etc-init.d-nginx

    This file should be made executable so that we can use it via 'service nginx ':

    chmod +x /etc/init.d/nginx
  3. Set the service to start whenever the system boots:

    chkconfig --add nginx
    chkconfig --level 345 nginx on
  4. Configure /etc/nginx/nginx.conf to set types_hash_bucket_size andserver_names_hash_bucket_size which needs to be increased.

    http {
    include mime.types;
    default_type application/octet-stream;
    # add the below 2 lines under http around line 20
    types_hash_bucket_size 64;
    server_names_hash_bucket_size 128;
  5. Start the server. This will start the VPS on port 80.

    service nginx start

Setup Complete

Visit example.com or your IP address in the browser. You will see:

Welcome to nginx!

Congratulations! Your brand new nginx server is up.

0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 吃奶小牛肚子胀怎么办 新生儿吃奶后打嗝怎么办 新生儿吃多漾奶怎么办 婴儿总是睡不熟怎么办 新生儿不不吃奶怎么办 学生沉迷网络游戏班主怎么办 手机用不了卡怎么办 手机变竖屏怎么办 游戏不支持分屏怎么办 服装设计做到没思路怎么办 眼睛变单眼皮了怎么办 换手机号银行卡绑定怎么办 麦当劳mdp改版了怎么办 摆摊做小吃下雨怎么办 cad2014画图很卡怎么办 头皮有毛囊虫怎么办 头发上的毛囊炎怎么办 狗笼子里面拉屎怎么办 地图鱼起白点怎么办 初中学不好高中怎么办 初中孩子英语不好怎么办 初中孩子数学不好怎么办 万能声卡声音小怎么办 营业执照显示经营异常怎么办 暑假教育培训证怎么办 账套引入失败怎么办 报税报错了怎么办 税盘一年没抄税怎么办 初级会计证没领怎么办 房贷没有流水账怎么办 锦州银行倒闭了怎么办 认缴期限过了怎么办 吃了假猪血怎么办 橡皮泥粘头发上怎么办 遇到难相处同事怎么办 遇到奇葩家长怎么办啊! 过期的孕妇奶粉怎么办 肝脏造血功能差怎么办 移动数据显示e怎么办 42天婴儿咳嗽怎么办 脚扭伤贴膏药过敏怎么办