我要和nginx批命拼命

小样!不信征服不了你!

nginx配置和文件讲解,参考

http://blog.51cto.com/ixdba/790611

配置文件模块如下:

 

 
以nginx-1.12.2.tar.gz为例:
解包:
[root@localhost ~]# ls
nginx-1.12.2.tar.gz
[root@localhost ~]# tar -xf nginx-1.12.2.tar.gz 
[root@localhost ~]# ls
nginx-1.12.2  nginx-1.12.2.tar.gz
[root@localhost ~]# cd nginx-1.12.2/
[root@localhost nginx-1.12.2]# ls
auto  CHANGES  CHANGES.ru  conf  configure  contrib  html  LICENSE  man  README  src
检测:主要是为了检查缺少哪些依赖包,并却指定一些路径比如安装路径什么的。规范./configure --prefix=/usr/local/nginx(必须先建好目录),但是1.12版本直接./configure就可以了,自动创建nginx目录,默认安装在/usr/local/nginx目录下。
 
第一次安装nginx需要先安装以下依赖软件,不然检测不过,会提醒你缺少。
[root@localhost nginx-1.12.2]#yum install -y gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel
检测成功的结尾
[root@localhost nginx-1.12.2]#./configure
……………………
creating objs/Makefile

Configuration summary
  + using system PCRE library
  + OpenSSL library is not used
  + using system zlib library

  nginx path prefix: "/usr/local/nginx"  ----##默认的安装路径
  nginx binary file: "/usr/local/nginx/sbin/nginx" ---##默认的启动文件目录
  nginx modules path: "/usr/local/nginx/modules"
  nginx configuration prefix: "/usr/local/nginx/conf" ----##默认配置文件目录
  nginx configuration file: "/usr/local/nginx/conf/nginx.conf" --##配置文件
  nginx pid file: "/usr/local/nginx/logs/nginx.pid" ---##进程
  nginx error log file: "/usr/local/nginx/logs/error.log" ---##错误日志
  nginx http access log file: "/usr/local/nginx/logs/access.log"
  nginx http client request body temporary files: "client_body_temp"
  nginx http proxy temporary files: "proxy_temp"
  nginx http fastcgi temporary files: "fastcgi_temp"
  nginx http uwsgi temporary files: "uwsgi_temp"
  nginx http scgi temporary files: "scgi_temp"
 
编译:
[root@localhost nginx-1.12.2]#make
安装:
[root@localhost nginx-1.12.2]#make install
查看:
[root@localhost nginx-1.12.2]# cd /usr/local/nginx/
[root@localhost nginx]# ls
conf  html  logs  sbin
[root@localhost nginx]# cd conf
配置文件,(有几个被注释掉的配置本来没有,为了理解我后添加的)
root@localhost conf]# cat nginx.conf
#user nobody;                       -----##Nginx Worker进程运行用户以及用户组,window下不指定
worker_processes  1;        ---------##Nginx要开启的进程数,CPU的数量或者2倍于CPU
#error_log  logs/error.log; ---------##全局错误日志文件,级别有:debug,info,notice,warn,error,crit
#error_log  logs/error.log  info;----##debug输出最为详细
#pid        logs/nginx.pid; ---------##进程id的存储文件位置
#worker_rlimit_nofile 65535;---------##指定一个nginx进程打开的最多文件描述符数目,linux2.6开启数65535
                               --------#这里是65535,需要使用命令“ulimit -n 65535”来设置。
events {
    #use epoll;   -------------##Nginx支持的工作模式有select、poll、kqueue、epoll、rtsig和dev、poll。
                             ----##其中select和poll都是标准的工作模式,kqueue和epoll是高效的工作模式.
                             ----##不同的是epoll用在Linux平台上,而kqueue用在BSD系统中。
                             ----##对于Linux系统,epoll工作模式是首选。

    worker_connections  1024;--##默认最大客户端连接数是1024,计算方式为:
                             ----## Max_client=worker_processes*worker_connections,
                             ----##在作为反向代理时,max_clients变为:
                             ----##max_clients = worker_processes * worker_connections/4。
                             ----##最大连接数受Linux系统进程的最大打开文件数限制,假设改为为65536,
                             ----##执行命令“ulimit -n 65536”后worker_connections的设置才能生效。
}
http {
    include       mime.types;--##实现对配置文件所包含的文件的设定,可以减少主配置文件的复杂度
    default_type  application/octet-stream;
                             --##设定默认类型为二进制流,也就是当文件类型未定义时使用这种方式。
                             ----##例如在没有配置PHP环境时,Nginx是不予解析的,
                             ----##此时用浏览器访问PHP文件就会出现下载窗口。

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                       --------##main为此日志输出格式的名称,可在下面的access_log指令中引用           
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';
    #access_log  logs/access.log  main;
    sendfile        on; -------##用于开启高效文件传输模式。
                          -------##将tcp_nopush和tcp_nodelay两个指令设置为on用于防止网络阻塞。
    #tcp_nopush     on;
    #keepalive_timeout  0;  ---##设置客户端连接保持活动的超时时间。在超过这个时间之后,服务器会关闭该连接。
    keepalive_timeout  65;
    #gzip  on;    ------------##,“gzip on”表示开启GZIP压缩,实时压缩输出数据流

    #upstream ixdba.net{ -----##upstream指令指定了一个负载均衡器的名称ixdba.net,
     #ip_hash;        --------##当负载调度算法为ip_hash时,负载均衡调度中状态不能是weight和backup
     #server 192.168.12.133:80;
     #server 192.168.12.134:80  down;---##表示当前的server暂时不参与负载均衡
     #server 192.168.12.135:8009  max_fails=3  fail_timeout=20s;
                                             ----##允许请求失败的次数
                                                          ----##经历max_fails次失败后,暂停服务时间

     #server 192.168.12.136:8080 backup;---##当其他所有的非backup机器出现故障或者忙的时候,
                                        -----##才会请求backup机器,因此这台机器的压力最轻。
     #}
                        -----##Nginx的负载均衡模块支持4种调度算法。
                      -----##轮询(默认)请求按时间顺序逐一分配到后端,if某台宕自动被剔除,访问无影响。
                       -----##Weight。指定轮询权值,Weight值越大,分配到的访问机率越高。
                       -----##ip_hash。每个请求按访问IP的hash结果分配,
                          -------##这样同一个IP的访客访问固定服务器,解决了动态网页存在的session共享问题。
                       -----## fair。依据页面大小,加载时间长短智能地进行负载均衡,
                          -------##根据后端服务器的响应时间来分配请求,响应时间短的优先分配。
      -------##如果需要使用这种调度算法,必须下载Nginx的upstream_fair模块。
                       -----##url_hash,使每个url定向到同一个后端服务器,提高后端缓存服务器的效率。
                          -------##如果需要使用这种调度算法,必须安装Nginx 的hash软件包。

    server {        --------------##server标志定义虚拟主机开始。
        listen       80;  --------##指定虚拟主机的服务端口。
        server_name  localhost; --##用来指定IP地址或者域名,多个域名之间用空格分开。
        #charset koi8-r;  --------##设置网页的默认编码格式。
        #access_log  logs/host.access.log  main;---##此虚拟主机访问日志存放路径,main指定输出格式

        location / {  ------------##支持正则表达式匹配、条件判断匹配,
                           -------##用户可以通过location指令实现Nginx对动、静态网页进行过滤处理。
            root  /root/zabbix/html;    ----##指定虚拟主机的网页根目录。
            index  index.html index.htm; ---##设定访问的默认首页地址。
            #expires 30d;      -------------##指定静态文件的过期时间,这里是30天
        }
        #error_page  404      /404.html; ---##error_page指令可以定制各种错误信息的返回页面
        # 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 / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
    # HTTPS server
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;
    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
      -------##如果需要使用这种调度算法,必须下载Nginx的upstream_fair模块。
                       -----##url_hash,使每个url定向到同一个后端服务器,提高后端缓存服务器的效率。
                          -------##如果需要使用这种调度算法,必须安装Nginx 的hash软件包。

    server {        --------------##server标志定义虚拟主机开始。
        listen       80;  --------##指定虚拟主机的服务端口。
        server_name  localhost; --##用来指定IP地址或者域名,多个域名之间用空格分开。
        #charset koi8-r;  --------##设置网页的默认编码格式。
        #access_log  logs/host.access.log  main;---##此虚拟主机访问日志存放路径,main指定输出格式

        location / {  ------------##支持正则表达式匹配、条件判断匹配,
                           -------##用户可以通过location指令实现Nginx对动、静态网页进行过滤处理。
            root  /root/zabbix/html;    ----##指定虚拟主机的网页根目录。
            index  index.html index.htm; ---##设定访问的默认首页地址。
            #expires 30d;      -------------##指定静态文件的过期时间,这里是30天
        }
        #error_page  404      /404.html; ---##error_page指令可以定制各种错误信息的返回页面
        # 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 / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
    # HTTPS server
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;
    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
下面是我根据自己的系统情况作的修改
[root@localhost conf]# cat /etc/redhat-release
CentOS Linux release 7.4.1708 (Core)
[root@localhost conf]# cp nginx.conf nginx.conf.bk  ---##先将配置文件备份
[root@localhost conf]# lscpu  ----##查看cpu个数,我有一个
[root@localhost conf]# ulimit -n
1024
[root@localhost conf]# useradd www
[root@localhost conf]# id www
uid=1001(www) gid=1001(www) groups=1001(www)
[root@localhost conf]# mkdir conf.d  ---###这个版本没有扩展文件,so创建扩展文件目录。
[root@localhost conf]# vim nginx.conf
user  www;
worker_processes  2;
error_log  logs/error.log;
pid        logs/nginx.pid; worker_rlimit_nofile 1024; #最好与ulimit -n的值保持一致,设置后,worker_connections是不能超过这个值
events {     worker_connections  1024; }

include /usr/local/nginx/conf/conf.d/*.conf; ---###这是我后加的,放在http里server上方

编辑扩展配置文件
[root@localhost conf]# cd conf.d/
[root@localhost conf.d]# vim test.conf
server {
        listen 80;
        server_name localhost;
        root /usr/local/nginx/conf/conf.d/test;
        index index.html;
}
[root@localhost conf.d]# mkdir test
[root@localhost conf.d]# ls
test  test.conf
[root@localhost test]# echo test > ./test/index.html
[root@localhost test]# ls
index.html
 
启动
 
[root@localhost test]# ps -ef | grep nginx
root      17676  14042  0 02:11 pts/0    00:00:00 grep --color=auto nginx
[root@localhost test]# /usr/local/nginx/sbin/nginx 
nginx: [warn] conflicting server name "localhost" on 0.0.0.0:80, ignored
[root@localhost test]# ps -ef | grep nginx
root      17684      1  0 02:12 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx
www       17686  17684  0 02:12 ?        00:00:00 nginx: worker process
www       17687  17684  0 02:12 ?        00:00:00 nginx: worker process
www       17688  17684  0 02:12 ?        00:00:00 nginx: worker process
www       17689  17684  0 02:12 ?        00:00:00 nginx: worker process
root      17705  14042  0 02:12 pts/0    00:00:00 grep --color=auto nginx
验证:
[root@localhost test]# curl localhost
test
============
一些补充知识:网上看到的,没有实践
 
 
验证配置文件是否正确:
方法一:进入nginx安装目录sbin下,输入命令./nginx -t
方法二:在启动命令-c前加-t
 
nginx启动:
[root@LinuxServer sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nginx停止:杀死进程
 
[root@LinuxServer ~]# ps -ef|grep nginx --##查看进程号
[root@LinuxServer ~]# kill -9 进程号
nginx重启:
 
方法一:进入nginx可执行目录sbin下,输入命令 ./nginx -s reload 即可
[root@LinuxServer sbin]#./nginx -s reload
方法二:查找当前nginx进程号,然后输入命令:kill -HUP 进程号 实现重启nginx服务
[root@LinuxServer sbin]#kill -HUP 进程号
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值