绑定完请刷新页面
取消
刷新

分享好友

×
取消 复制
Nginx的实用技巧专栏
2019-10-20 12:57:39

MedusaSorcerer的博客


专栏目录

专栏详情

Nginx

Nginx介绍

Nginx 是一款轻量级的Web反向代理服务器及电子邮件(IMAP/POP3)代理服务器  
并在一个BSD-like 协议下发行  
由俄罗斯的程序设计师 *Igor Sysoev* 所开发  
初供俄国大型的入口网站及搜寻引擎Rambler(俄文:Рамблер)使用  
其特点是占有内存少, 并发能力强  
事实上nginx的并发能力确实在同类型的网页伺服器中表现较好  

# 优点
(1) Nginx 可以在大多数 Unix like OS 上编译运行,并有 Windows 移植版  
(2) Nginx 是一个很强大的高性能Web和反向代理服务器, 能支持50K个并发连接数的响应  
(3) Nginx 可以作为负载均衡服务器或者作为邮件代理服务器:Nginx  
(4) Nginx 是一个安装简单,配置简洁(支持perl语法), Bug非常少的服务器
复制代码

Nginx下载和安装

中文官方网站点击此处跳转
英文官方网站点击此处跳转

Nginx有三个版本:稳定版、开发版和历史稳定版  
开发版更新较快,包含新的功能和bug的修复,但同时也可能会遇到新的bug,
开发版一旦更新稳定下来,就会被加入稳定版分支中。
然而有些新功能不一定会被加到旧的稳定版中去。
稳定版本更新较慢,但是bug较少,可以作为生产环境的,
因此通常建议使用稳定版。历史稳定版本为以往稳定版本的汇总,不包含新的功能。

这里选择当前的稳定版本 nginx-0.7.65 作为介绍对象,开始介绍编译安装。
在安装Nginx之前,确保系统已经安装了 gcc、openssl-devel、pcre-devel 和 zlib-devel 软件库。

开始安装Nginx
在默认情况下,经过编译安装的Nginx包含了大部分可用模块  
可以通过 ./configure --help 选项设置各个模块的使用情况   
若不需要的 http_ssi 模块, 可通过 --without-http_ssi_module 方式关闭此模块  
若需要 http_perl 模块,那么可以通过 --with-http_perl_module 方式安装此模块
--with-http_stub_status_module 可以用来启用 Nginx 的 NginxStatus 功能,监控 Nginx 当前状态
复制代码
[root@localhost home]# tar zxvf pcre-8.02.tar.gz    
[root@localhost home]# cd pcre-8.02    
[root@localhost pcre-8.02]# ./configure    
[root@localhost pcre-8.02]# make    
[root@localhost pcre-8.02]# make install  
[root@localhost home]# tar zxvf nginx-0.7.65.tar.gz    
[root@localhost home]#cd nginx-0.7.65    
[root@localhostnginx-0.7.65]#./configure --with-http_stub_status_module  --prefix=/opt/nginx    
[root@localhost nginx-0.7.65]#make    
[root@localhost nginx-0.7.65]#make install  
复制代码

Nginx配置说明

Nginx的配置文件是一个纯文本文件
它一般位于Nginx安装目录的conf目录下
整个配置文件是以block的形式组织的。  

每个block一般以一个大括号“{}”来表示,
block可以分为几个层次,
整个配置文件中Main指令位于高层,
在Main层下面可以有Events、HTTP等层级,
而在HTTP层中又包含有Server层,即server block,server 
block中又可分为location层,并且一个server block中可以包含多个location block。
复制代码
#开启进程数 <=CPU数 
worker_processes 1; 
   
#错误日志保存位置 
#error_log logs/error.log; 
#error_log logs/error.log notice; 
#error_log logs/error.log info; 
   
#进程号保存文件 
#pid logs/nginx.pid; 
   
#等待事件 
events { 
    #每个进程大连接数(大连接=连接数x进程数)  
    worker_connections 1024; 
} 
   
http { 
    #文件扩展名与文件类型映射表 
    include mime.*; 
   
    #默认文件类型 
    default_type application/octet-stream; 
   
    #日志文件输出格式 这个位置相于全局设置 
    #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' 
    # '$status $body_bytes_sent "$http_referer" ' 
    # '"$http_user_agent" "$http_x_forwarded_for"'; 
    
    #请求日志保存位置 
    #access_log logs/access.log main; 
   
    #打开发送文件 
    sendfile on; 
    #tcp_nopush on; 

    #连接超时时间 
    #keepalive_timeout 0; 
    keepalive_timeout 65; 
 
    #打开gzip压缩 
    #gzip on; 
    
    #设定请求缓冲 
    client_header_buffer_size 1k; 
    large_client_header_buffers 4 4k; 
   
    #设定负载均衡的服务器列表 
    upstream myproject {  
        #weigth参数表示权值,权值越高被分配到的几率越大 
        #max_fails 当有#max_fails个请求失败,就表示后端的服务器不可用,默认为1,将其设置为0可以关闭检查 
        #fail_timeout 在以后的#fail_timeout时间内nginx不会再把请求发往已检查出标记为不可用的服务器 
        #这里指定多个源服务器,ip:端口,80端口的话可写可不写  
        server IPAddress:8080 weight=5 max_fails=2 fail_timeout=600s; 
        #server IPAddress:8080 weight=3 max_fails=2 fail_timeout=600s;  
    } 
   
    #个虚拟主机 
    server { 
    #监听IP端口 
    listen 80; 

    #主机名 
    server_name localhost; 

    #设置字符集 
    #charset koi8-r; 
       
    #本虚拟server的访问日志 相当于局部变量 
    #access_log logs/host.access.log main;  
   
    #对本server"/"启用负载均衡 
    location / {  
        #root /root; #定义服务器的默认网站根目录位置 
        #index index.php index.html index.htm; #定义首页索引文件的名称 
        proxy_pass http://myproject; #请求转向myproject定义的服务器列表 
   
        #以下是一些反向代理的配置可删除. 
        # proxy_redirect off;  
        # proxy_set_header Host $host;  
        # proxy_set_header X-Real-IP $remote_addr;  
        # proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;  
        # client_max_body_size 10m; #允许客户端请求的大单文件字节数  
        # client_body_buffer_size 128k; #缓冲区代理缓冲用户端请求的大字节数,  
        # proxy_connect_timeout 90; #nginx跟后端服务器连接超时时间(代理连接超时)  
        # proxy_send_timeout 90; #后端服务器数据回传时间(代理发送超时)  
        # proxy_read_timeout 90; #连接成功后,后端服务器响应时间(代理接收超时)  
        # proxy_buffer_size 4k; #设置代理服务器(nginx)保存用户头信息的缓冲区大小  
        # proxy_buffers 4 32k; #proxy_buffers缓冲区,网页平均在32k以下的话,这样设置  
        # proxy_busy_buffers_size 64k; #高负荷下缓冲大小(proxy_buffers*2)  
        # proxy_temp_file_write_size 64k; #设定缓存文件夹大小,大于这个值,将从upstream服务器传 
    }  
    location /upload {  
    alias e:/upload;  
    } 
        #设定查看Nginx状态的地址  
        location /NginxStatus {  
        stub_status on;  
        access_log off;  
        #allow IPAddress; 
        #deny all; 
        #auth_basic "NginxStatus";  
        #auth_basic_user_file conf/htpasswd;  
    } 
   
    #error_page 404 /404.html; 
       
    # redirect server error pages to the static page /50x.html 
    # 定义错误提示页面 
    error_page 500 502 503 504 /50x.html; 
    location = /50x.html { 
    root html; 
} 
   
   
# proxy the PHP scripts to Apache listening on 127.0.0.1:80 
#location ~ \.php$ { 
    # proxy_pass http://127.0.0.1; 
#} 
   
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 
#location ~ \.php$ { 
    # root html; 
    # fastcgi_pass 127.0.0.1:9000; 
    # fastcgi_index index.php; 
    # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; 
    # include fastcgi_params; 
#} 
   
# deny access to .htaccess files, if Apache's document root 
# concurs with nginx's one 
#location ~ /\.ht { 
    # deny all; 
}  
   
   
# another virtual host using mix of IP-, name-, and port-based configuration 
#server { 
    #多监听  
    # listen 8000; 
    #主机名 
    # listen somename:8080; 
    # server_name somename alias another.alias; 
       
    # location / { 
        #WEB文件路径 
        # root html; 
        #默认首页 
        # index index.html index.htm; 
    # } 
#} 
   
   
# HTTPS server HTTPS SSL加密服务器 
#server { 
    # listen 443; 
    # server_name localhost; 
       
    # ssl on; 
    # ssl_certificate cert.pem; 
    # ssl_certificate_key cert.key; 
       
    # ssl_session_timeout 5m; 
       
    # ssl_protocols SSLv2 SSLv3 TLSv1; 
    # ssl_ciphers HIGH:!aNULL:!MD5; 
    # ssl_prefer_server_ciphers on; 
       
    # location / { 
        # root html; 
        # index index.html index.htm; 
    # } 
#}  
} 
复制代码

Nginx启动/重启/关闭

ps -ef | grep nginx

# 从容停止Nginx
kill -QUIT 主进程号

# 快速停止Nginx
kill -TERM 主进程号

# 强制停止Nginx
pkill -9 nginx

# 平滑重启
kill -HUP 主进称号或进程号文件路径

# 平滑重启
/usr/nginx/sbin/nginx -s reload

# 判断Nginx配置是否正确
nginx -t -c /usr/nginx/conf/nginx.conf

# 判断Nginx配置是否正确
/usr/nginx/sbin/nginx -t
复制代码
分享好友

分享这个小栈给你的朋友们,一起进步吧。

MedusaSorcerer
创建时间:2020-06-29 16:36:50
学无止境, 学无止尽。
展开
订阅须知

• 所有用户可根据关注领域订阅专区或所有专区

• 付费订阅:虚拟交易,一经交易不退款;若特殊情况,可3日内客服咨询

• 专区发布评论属默认订阅所评论专区(除付费小栈外)

栈主、嘉宾

查看更多
  • zuike2000
    栈主
戳我,来吐槽~