三、Nginx配置文件说明

更新时间:2023-05-29 06:00:25 阅读: 评论:0

三、Nginx配置⽂件说明⼀、配置⽂件路径
/usr/local/nginx/conf
⼆、配置⽂件
#ur  nobody;
worker_process  1;
#error_log  logs/error.log;
香菇素包#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
#pid        logs/nginx.pid;
events {
worker_connections  1024;
}
http {
include      pes;
default_type  application/octet-stream;
#log_format  main  '$remote_addr - $remote_ur [$time_local] "$request" '
#                  '$status $body_bytes_nt "$http_referer" '
#                  '"$http_ur_agent" "$http_x_forwarded_for"';
#access_log  logs/access.log  main;
ndfile        on;
降火的茶
#tcp_nopush    on;
#keepalive_timeout  0;
keepalive_timeout  65;
#gzip  on;
rver {
listen      80;
rver_name  localhost;
#chart koi8-r;
#access_log  logs/host.access.log  main;
location / {
root  html;
index  index.html index.htm;
}
#error_page  404              /404.html;
怀孕多久会嗜睡# redirect rver 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  127.0.0.1;
#}蟾蜍草
# pass the PHP scripts to FastCGI rver 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-bad configuration
#
#rver {
#    listen      8000;
#    listen      somename:8080;
#    rver_name  somename  alias  another.alias;
#    location / {
天猫新风尚#        root  html;
#        index  index.html index.htm;
#    }
#}
# HTTPS rver
#
#rver {
#    listen      443 ssl;
#    rver_name  localhost;
#    ssl_certificate      cert.pem;
#    ssl_certificate_key  cert.key;
#    ssl_ssion_cache    shared:SSL:1m;
中班美工区
#    ssl_ssion_timeout  5m;
#    ssl_ciphers  HIGH:!aNULL:!MD5;
#    ssl_prefer_rver_ciphers  on;
#    location / {
#        root  html;
#        index  index.html index.htm;
#    }
#}
}
三、说明
1、nginx的配置⽂件由三部分组成
第⼀部分:全局块
从配置⽂件开始到events块之间的内容,主要会设置⼀些影响nginx服务器整体运⾏的配置指令。主要
包括配置运⾏nginx服务器的⽤户(组)、允许⽣产的worker process数,进程PID存放路径、⽇志存放路径和类型以及配置⽂件的引⼊等。
#ur  nobody;
worker_process  1;
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
#pid        logs/nginx.pid;
worker_process 1; 表⽰nginx服务器并发处理服务的关键配置,worker_process值越⼤,可以⽀持的并发处理量也越多,但是会受到硬件,软件等设备的制约。
第⼆部分:events块
events {
稻草人书免费阅读
worker_connections  1024;
}
events块设计的指令主要影响Nginx服务器与⽤户的⽹络连接,常⽤的设置包括是否开启对多work process下的⽹络连接进⾏序列化,是否允许同时接收多个⽹络连接,选取哪种事件驱动模型来处理连接请求,每个word process可以同时⽀持的最⼤连接数等。
上⾯标⽰每个word process⽀持的最⼤连接数为1024。
events部分的配置对nginx的性能影响较⼤,在实际中应该灵活配置。
第三部分:http块
http {
include      pes;
default_type  application/octet-stream;
#log_format  main  '$remote_addr - $remote_ur [$time_local] "$request" '    #                  '$status $
body_bytes_nt "$http_referer" '
#                  '"$http_ur_agent" "$http_x_forwarded_for"';
#access_log  logs/access.log  main;
ndfile        on;
#tcp_nopush    on;
#keepalive_timeout  0;
keepalive_timeout  65;
广东创业#gzip  on;
rver {
listen      80;
rver_name  localhost;
#chart koi8-r;
#access_log  logs/host.access.log  main;
location / {
root  html;
index  index.html index.htm;
}
#error_page  404              /404.html;
# redirect rver 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  127.0.0.1;
#}
# pass the PHP scripts to FastCGI rver 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-bad configuration    #
#rver {
#    listen      8000;
#    listen      somename:8080;
#    rver_name  somename  alias  another.alias;
#    location / {
#        root  html;
#        index  index.html index.htm;
#    }
#}
# HTTPS rver
#
#rver {
#    listen      443 ssl;
#    rver_name  localhost;
#    ssl_certificate      cert.pem;
#    ssl_certificate_key  cert.key;
#    ssl_ssion_cache    shared:SSL:1m;
#    ssl_ssion_timeout  5m;
#    ssl_ciphers  HIGH:!aNULL:!MD5;
#    ssl_prefer_rver_ciphers  on;
#    location / {
#        root  html;
#        index  index.html index.htm;
#    }
#}
}
nginx服务器配置中最频繁的部分,代理,缓存和⽇志定义等绝⼤多数功能和第三⽅模块的配置都在这⾥。
需要注意的是:http块也可以包括http全局块、rver块。
1、http全局块
http全局块配置的指令包括⽂件引⼊、MIME-TYPE定义、⽇志⾃定义、连接超时时间、单链接请求数上限等。
2、rver块
这块和虚拟主机有密切关系,虚拟主机从⽤户⾓度看,和⼀台独⽴的硬件主机是完全⼀样,该技术的
产⽣是为了节省互联⽹服务器硬件成本。
每个http块可以包括多个rver块,⽽每个rver块就相当于⼀个虚拟主机。
每个rver块也分为全局rver块,以及可以同时包含多个location块。
1、全局rver块
最常见的配置是本虚拟机主机的监听配置和本虚拟主机的名称或IP配置
2、location块
⼀个rver块可以配置多个location块
这块的主要作⽤是基于nginx服务器接收到的请求字符串(例如:rver_name/uri-string),对虚拟主机名称(也可以是IP别名)之外的字符串(例如:前⾯的/uri-string)进⾏匹配,对特定的请求进⾏处理。地址定向、数据缓存和应答控制等功能,还有许多第三⽅模块的配置也在这⾥进⾏。
location [ = | ~ | ~* | ^~] uri {
}
# 1、=:⽤于不含正则表达式的uri前,要求请求字符串与uri严格匹配,如果匹配成功,就停⽌继续向下搜索并⽴即处理请求。
# 2、~:⽤于表⽰uri包含正则表达式,并且区分⼤⼩写。
# 3、~*:⽤于表⽰uri包含正则表达式,并且不区分⼤⼩写
# 4、^~:⽤于不含正则表达式的uri前,要求nginx服务器找到标识uri和请求字符串匹配度最⾼的location后,⽴即使⽤此location处理请求,⽽不再使⽤location块中的正则uri和请求字符串做匹配。# 5、uri如果包含正则表达式,则必须要有~或者~*标识。

本文发布于:2023-05-29 06:00:25,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/804631.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图