sloky xu
Mail 419201422@qq.com
第一章 安装介绍
① 安装前准备工作 (安装 Nginx 编译所需所有依赖项)
yum -y install gcc gcc-c++ make zlib-devel pcre-devel openssl-devel
为什么要安装pcre?
我们的nginx服务器可能要用到rewrite重写,重写又涉及到了正则匹配,说到正则,你就能够想到正则的库,PCRE库.
② 下载 解压 编译nginx
1:下载 解压
官网:http://nginx.org/ (可以在官网上找到自己想下载的nginx版本的下载地址)
cd /root/
wget http://nginx.org/download/nginx-1.16.0.tar.gz
tar -zxvf nginx-1.16.0.tar.gz
2:配置编译参数编译
cd /root/nginx-1.16.0
./configure --prefix=/usr/local/nginx
make && make install
如果提示你缺少 pcre 库,你要看看你的nginx版本, 1.6.x 以上版本,要求指定 pcre 的源码目录.
2.1 下载并解压pcre
官网:http://www.pcre.org/
cd /root/
wget https://sourceforge.net/projects/pcre/files/pcre/8.41/pcre-8.41.tar.gz
tar -zxvf pcre-8.41.tar.gz
2.2 重新配置 nginx 编译参数:
./configure --prefix=/usr/local/nginx --with-pcre=/usr/local/src/pcre-8.41
下载并解压zlib
官网:http://zlib.net/
cd /root/
wget https://sourceforge.net/projects/libpng/files/zlib/1.2.11/zlib-1.2.11.tar.gz
tar -zxvf zlib-1.2.11.tar.gz
下载并解压openssl
官网:https://www.openssl.org/
依次执行以下命令
cd /root/
wget https://www.openssl.org/source/openssl-1.1.0b.tar.gz
tar -zxvf openssl-1.1.0b.tar.gz
参数 | 意义 |
---|---|
./configure | 是对安装进行配置; |
–prefix | 表示nginx要安装到哪个路径下,这里指定刚才新建好的/www/server目录下的nginx-1.12.2; |
–sbin-path | 表示nginx的可执行文件存放路径 |
–conf-path | 表示nginx的主配置文件存放路径,nginx允许使用不同的配置文件启动,通过命令行中的-c选项 |
–error-log-path | 表示nginx的主错误、警告、和诊断文件存放路径 |
–http-log-path | 表示nginx的主请求的HTTP服务器的日志文件的存放路径 |
–user | 表示nginx工作进程的用户 |
–group | 表示nginx工作进程的用户组 |
–pid-path | 表示nginx.pid文件的存放路径,将存储的主进程的进程号。安装完成后,可以随时改变的文件名 , 在nginx.conf配置文件中使用 PID指令。默认情况下,文件名 为prefix/logs/nginx.pid |
–with-select_module或–without-select_module | 表示启用或禁用构建一个模块来允许服务器使用select()方法 |
–with-poll_module或–without-poll_module | 表示启用或禁用构建一个模块来允许服务器使用poll()方法 |
–with-http_ssl_module | 表示使用https协议模块。默认情况下,该模块没有被构建。建立并运行此模块的OpenSSL库是必需的 |
–with-pcre | 表示pcre的源码路径,因为解压后的pcre是放在root目录下的,所以是/root/pcre-8.41; |
–with-zlib | 表示zlib的源码路径,这里因为解压后的zlib是放在root目录下的,所以是/root/zlib-1.2.11 |
–with-openssl | 表示openssl库的源码路径,这里因为解压后的zlib是放在root目录下的,所以是/root/openssl-1.1.0b |
user www www;
worker_processes auto;
worker_cpu_affinity auto;
error_log /home/wwwlogs/nginx_error.log crit;
pid /usr/local/nginx/logs/nginx.pid;
#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;
events
{
use epoll;
worker_connections 51200;
multi_accept off;
accept_mutex off;
}
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 50m;
sendfile on;
sendfile_max_chunk 512k;
tcp_nopush on;
keepalive_timeout 60;
tcp_nodelay on;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
fastcgi_buffer_size 64k;
fastcgi_buffers 4 64k;
fastcgi_busy_buffers_size 128k;
fastcgi_temp_file_write_size 256k;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_comp_level 2;
gzip_types text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;
gzip_vary on;
gzip_proxied expired no-cache no-store private auth;
gzip_disable "MSIE [1-6]\.";
#limit_conn_zone $binary_remote_addr zone=perip:10m;
##If enable limit_conn_zone,add "limit_conn perip 10;" to server section.
server_tokens off;
access_log off;
server
{
listen 80 default_server;
#listen [::]:80 default_server ipv6only=on;
server_name _;
index index.html index.htm index.php;
root /home/wwwroot/default;
#error_page 404 /404.html;
# Deny access to PHP files in specific directory
#location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }
include enable-php.conf;
location /nginx_status
{
stub_status on;
access_log off;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /.well-known {
allow all;
}
location ~ /\.
{
deny all;
}
access_log /home/wwwlogs/access.log;
}
include vhost/*.conf;
}
网友评论