Nginx安装(zhuan)

http://www.nginx.cn/installjavascript

************************php

 

nginx可使用各平台的默认包来安装,本文是介绍使用源码编译安装,包括具体的编译参数信息。css

正式开始前,编译环境gcc g++ 开发库之类的须要提早装好,这里默认你已经装好。html

ububtu平台编译环境可使用如下指令java

centos平台编译环境使用以下指令node

安装make:nginx

安装g++:c++

下面正式开始
---------------------------------------------------------------------------
通常咱们都须要先装pcre, zlib,前者为了重写rewrite,后者为了gzip压缩。
1.选定源码目录
能够是任何目录,本文选定的是/usr/local/srcweb

2.安装PCRE库
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/ 下载最新的 PCRE 源码包,使用下面命令下载编译和安装 PCRE 包:正则表达式

3.安装zlib库
http://zlib.net/zlib-1.2.8.tar.gz 下载最新的 zlib 源码包,使用下面命令下载编译和安装 zlib包:

4.安装ssl(某些vps默认没装ssl)

5.安装nginx

Nginx 通常有两个版本,分别是稳定版和开发版,您能够根据您的目的来选择这两个版本的其中一个,下面是把 Nginx 安装到 /usr/local/nginx 目录下的详细步骤:

--with-pcre=/usr/src/pcre-8.34 指的是pcre-8.34 的源码路径。
--with-zlib=/usr/src/zlib-1.2.7 指的是zlib-1.2.7 的源码路径。

安装成功后 /usr/local/nginx 目录下以下

6.启动
确保系统的 80 端口没被其余程序占用,运行/usr/local/nginx/nginx 命令来启动 Nginx,

若是查不到结果后执行,有结果则忽略此步骤(ubuntu下必须用sudo启动,否则只能在前台运行)

打开浏览器访问此机器的 IP,若是浏览器出现 Welcome to nginx! 则表示 Nginx 已经安装并运行成功。

-----------------------------------------------------
到这里nginx就安装完成了,若是只是处理静态html就不用继续安装了

若是你须要处理php脚本的话,还须要安装php-fpm

下面安装排错

附:可能遇到的错误和一些帮助信息

1.1编译pcre错误

解决办法:安装g++,别忘了从新configure

1.2 make出错

按照第4步的安装方法或
ubuntu下

centos下

2.nginx编译选项

make是用来编译的,它从Makefile中读取指令,而后编译。

make install是用来安装的,它也从Makefile中读取指令,安装到指定的位置。

configure命令是用来检测你的安装平台的目标特征的。它定义了系统的各个方面,包括nginx的被容许使用的链接处理的方法,好比它会检测你是否是有CC或GCC,并非须要CC或GCC,它是个shell脚本,执行结束时,它会建立一个Makefile文件。nginx的configure命令支持如下参数:

  • --prefix=path    定义一个目录,存放服务器上的文件 ,也就是nginx的安装目录。默认使用 /usr/local/nginx。
  • --sbin-path=path 设置nginx的可执行文件的路径,默认为  prefix/sbin/nginx.
  • --conf-path=path  设置在nginx.conf配置文件的路径。nginx容许使用不一样的配置文件启动,经过命令行中的-c选项。默认为prefix/conf/nginx.conf.
  • --pid-path=path  设置nginx.pid文件,将存储的主进程的进程号。安装完成后,能够随时改变的文件名 , 在nginx.conf配置文件中使用 PID指令。默认状况下,文件名 为prefix/logs/nginx.pid.
  • --error-log-path=path 设置主错误,警告,和诊断文件的名称。安装完成后,能够随时改变的文件名 ,在nginx.conf配置文件中 使用 的error_log指令。默认状况下,文件名 为prefix/logs/error.log.
  • --http-log-path=path  设置主请求的HTTP服务器的日志文件的名称。安装完成后,能够随时改变的文件名 ,在nginx.conf配置文件中 使用 的access_log指令。默认状况下,文件名 为prefix/logs/access.log.
  • --user=name  设置nginx工做进程的用户。安装完成后,能够随时更改的名称在nginx.conf配置文件中 使用的 user指令。默认的用户名是nobody。
  • --group=name  设置nginx工做进程的用户组。安装完成后,能够随时更改的名称在nginx.conf配置文件中 使用的 user指令。默认的为非特权用户。
  • --with-select_module --without-select_module 启用或禁用构建一个模块来容许服务器使用select()方法。该模块将自动创建,若是平台不支持的kqueue,epoll,rtsig或/dev/poll。
  • --with-poll_module --without-poll_module 启用或禁用构建一个模块来容许服务器使用poll()方法。该模块将自动创建,若是平台不支持的kqueue,epoll,rtsig或/dev/poll。
  • --without-http_gzip_module — 不编译压缩的HTTP服务器的响应模块。编译并运行此模块须要zlib库。
  • --without-http_rewrite_module  不编译重写模块。编译并运行此模块须要PCRE库支持。
  • --without-http_proxy_module — 不编译http_proxy模块。
  • --with-http_ssl_module — 使用https协议模块。默认状况下,该模块没有被构建。创建并运行此模块的OpenSSL库是必需的。
  • --with-pcre=path — 设置PCRE库的源码路径。PCRE库的源码(版本4.4 - 8.30)须要从PCRE网站下载并解压。其他的工做是Nginx的./ configure和make来完成。正则表达式使用在location指令和 ngx_http_rewrite_module 模块中。
  • --with-pcre-jit —编译PCRE包含“just-in-time compilation”(1.1.12中, pcre_jit指令)。
  • --with-zlib=path —设置的zlib库的源码路径。要下载从 zlib(版本1.1.3 - 1.2.5)的并解压。其他的工做是Nginx的./ configure和make完成。ngx_http_gzip_module模块须要使用zlib 。
  • --with-cc-opt=parameters — 设置额外的参数将被添加到CFLAGS变量。例如,当你在FreeBSD上使用PCRE库时须要使用:--with-cc-opt="-I /usr/local/include。.如须要须要增长 select()支持的文件数量:--with-cc-opt="-D FD_SETSIZE=2048".
  • --with-ld-opt=parameters —设置附加的参数,将用于在连接期间。例如,当在FreeBSD下使用该系统的PCRE库,应指定:--with-ld-opt="-L /usr/local/lib".

典型实例(下面为了展现须要写在多行,执行时内容须要在同一行)

1
2
3
4
5
6
7
./configure
    --sbin-path=/usr/local/nginx/nginx
    --conf-path=/usr/local/nginx/nginx.conf
    --pid-path=/usr/local/nginx/nginx.pid
    --with-http_ssl_module
    --with-pcre=../pcre-4.4
    --with-zlib=../zlib-1.1.3
 
 

********************************

附配置文件

[root@localhost nginx-1.10.2]# yum install gcc.x86_64
[root@localhost nginx-1.10.2]# yum install gcc-c++.x86_64

[root@localhost nginx-1.10.2]# yum install automake.noarch

[root@localhost nginx-1.10.2]# yum install  libtool.x86_64

[root@localhost nginx-1.10.2]# yum install libtool-ltdl.x86_64

[root@localhost nginx-1.10.2]# yum install libtool-ltdl-devel.x86_64

[root@localhost nginx-1.10.2]# yum install pcre-devel.x86_64

[root@localhost nginx-1.10.2]# yum install pcre-static.x86_64

[root@localhost nginx-1.10.2]# yum install zlib-static.x86_64

[root@localhost nginx-1.10.2]# yum install openssl.x86_64

[root@localhost nginx-1.10.2]# yum install openssl-devel.x86_64

[root@localhost nginx-1.10.2]# yum install openssl-static.x86_64


[root@localhost nginx-1.10.2]# ./configure --user=www --group=www --prefix=/usr/local/nginx
--with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module

********************

附nginx配置文件

user  www www;worker_processes auto;worker_rlimit_nofile 65535;error_log  logs/error.log;pid        /var/run/nginx.pid;events {    use epoll;    worker_connections  51200;}http{  include       mime.types;  default_type  application/octet-stream;  server_names_hash_bucket_size 128;  client_header_buffer_size 32k;  large_client_header_buffers 4 32k;  client_max_body_size 100m;  sendfile on;  tcp_nopush     on;  keepalive_timeout 60;  tcp_nodelay on;  fastcgi_connect_timeout 600;  fastcgi_send_timeout 600;  fastcgi_read_timeout 600;  fastcgi_buffer_size 64k;  fastcgi_buffers 16 256k;  fastcgi_busy_buffers_size 256k;  fastcgi_temp_file_write_size 256k;  fastcgi_intercept_errors on;  gzip on;  gzip_min_length  1k;  gzip_buffers     4 16k;  gzip_http_version 1.1;  gzip_comp_level 4;  gzip_types       text/plain application/x-javascript text/css application/xml;  gzip_vary on;  log_format log.1 '$http_X_ClientIP - $remote_user [$time_local] "$request" '                    '$status $body_bytes_sent "$http_referer" '                    '"$http_user_agent" "$http_x_forwarded_for" "$request_time"'                    '"$remote_addr"'; log_format  access_log  '$remote_addr - $remote_user [$time_local] "$request" '        '$status $body_bytes_sent "$http_referer" '        '"$http_user_agent" $http_x_forwarded_for';  server  {    listen       80;    charset utf-8;    server_name  server1.english.gov.cn server1.english.bbc.org;    index index.html index.htm index.php index.shtml;    root  /export/htdocs/server1;    access_log  logs/server1.english.gov.cn.log log.1;    error_page   500 502 503 504  /50x.html;    location = /50x.html {        root   /usr/local/nginx/html;    }    location ~ (/\.svn/|/include/config/|/lib/|/cdnup/) {                deny all;    }   # location ~ .*\.(php|php5|php4|shtml)?$ {   # root /export/htdocs;   # try_files $uri =404;   # fastcgi_pass unix:/tmp/php-cgi.sock;   # fastcgi_index index.php;   # include fastcgi.conf;   #include pathinfo.conf;   #  }    }  server  {    listen       80;    charset utf-8;    server_name  server.gov.cn server.bbc.org;    index index.html index.htm index.php index.shtml;    root  /export/htdocs/server;    access_log  server.gov.cn.log log.1;    error_page   500 502 503 504  /50x.html;    location = /50x.html {        root   /usr/local/nginx/html;    }    location ~ (/\.svn/|/include/config/|/lib/|/cdnup/) {                deny all;    }   # location ~ .*\.(php|php5|php4|shtml)?$ {   # root /export/htdocs;   # try_files $uri =404;   # fastcgi_pass unix:/tmp/php-cgi.sock;   # fastcgi_index index.php;   # include fastcgi.conf;   #include pathinfo.conf;   #  }    }}

相关文章
相关标签/搜索