nginx初级 -- 盘TA!

1:nginx简介

nginx是一个HTTP服务器,也是一个反向代理服务器,并且可以提供静态网页的web服务器,相比于apache的多进程多线程的并发模型,而nginx是基于事件的异步IO的并发模型,性能更好,更轻量级。

 

 

2:安装部署

# 下载源码包

$  wget  http://nginx.org/download/nginx-0.1.41.tar.gz

#解压

$  tar  -zxvf  nginx-0.1.41.tar.gz

 

# 进入目录并生成Makefile文件,新手可以直接 ./configure

$  cd  nginx-0.1.41

$ ./configure \
--prefix=/etc/nginx                   \
--sbin-path=/home/nuodun/nginx-0.1.41/bin/nginx           \
--conf-path=/home/nuodun/nginx-0.1.41/conf/nginx.conf     \
--pid-path=/home/nuodun/nginx-0.1.41/nginx.pid         \
--lock-path=/home/nuodun/nginx-0.1.41/nginx.lock       \
--error-log-path=/home/nuodun/nginx-0.1.41/logs/error.log \
--http-log-path=/home/nuodun/nginx-0.1.41/logs/access.log \
--with-http_gzip_static_module        \
--with-http_stub_status_module        \
--with-http_ssl_module                \
--with-pcre                           \
--with-file-aio                       \
--with-http_realip_module             \
--without-http_scgi_module            \
--without-http_uwsgi_module           \
--without-http_fastcgi_module

#可以使用nginx -V来查看上述配置模块,接下来编译并安装

$ make
$ make install
 

 

3:nginx命令

1:启动

$NGINX_HOME/bin/nginx  -c  $NGINX_HOME/conf/nginx.conf

2:重载(更新了conf重新加载)

$NGINX_HOME/bin/nginx   -s  reload

3:优雅停止

$NGINX_HOME/bin/nginx  -s  quit

 

4:nginx.conf配置详解

======================== 每个指令必须有分号结束==================================================

#user administrator administrators;  #配置用户或者组,默认为nobody nobody。
#worker_processes 2;  #允许生成的进程数,默认为1
#pid /nginx/pid/nginx.pid;   #指定nginx进程运行文件存放地址
error_log log/error.log debug;  #制定日志路径,级别。这个设置可以放入全局块,http块,server块,级别以此为:debug|info|notice|warn|error|crit|alert|emerg
events {
    accept_mutex on;   #设置网路连接序列化,防止惊群现象发生,默认为on
    multi_accept on;  #设置一个进程是否同时接受多个网络连接,默认为off
    #use epoll;      #事件驱动模型,select|poll|kqueue|epoll|resig|/dev/poll|eventport
    worker_connections  1024;    #最大连接数,默认为512
}
http {
    include       mime.types;   #文件扩展名与文件类型映射表
    default_type  application/octet-stream; #默认文件类型,默认为text/plain
    #access_log off; #取消服务日志    
    log_format myFormat '$remote_addr–$remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for'; #自定义格式
    access_log log/access.log myFormat;  #combined为日志格式的默认值
    sendfile on;   #允许sendfile方式传输文件,默认为off,可以在http块,server块,location块。
    sendfile_max_chunk 100k;  #每个进程每次调用传输数量不能大于设定的值,默认为0,即不设上限。
    keepalive_timeout 65;  #连接超时时间,默认为75s,可以在http,server,location块。
 
    upstream mysvr {   
      server 127.0.0.1:7878;
      server 192.168.10.121:3333 backup;  #热备
    }
    error_page 404 https://www.baidu.com; #错误页
    server {
        keepalive_requests 120; #单连接请求上限次数。
        listen       4545;   #监听端口
        server_name  127.0.0.1;   #监听地址       
        location  ~*^.+$ {       #请求的url过滤,正则匹配,~为区分大小写,~*为不区分大小写。
           #root path;  #根目录
           #index vv.txt;  #设置默认页
           proxy_pass  http://mysvr;  #请求转向mysvr 定义的服务器列表
           deny 127.0.0.1;  #拒绝的ip
           allow 172.18.5.54; #允许的ip           
        } 
    }
}
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值