首页 “nginx”

nginx之location配置备忘

  • yiqingpeng
  • 2020-01-20
  • 0
  • nginx 
一、语法规则 location  [=|^~|~|~*|!~|!~*]  uri {...} 或 location  @name  {...} #nginx内部跳转。 location匹配的目标字符串是nginx的变量$request_uri(不包含query string)。 二

nginx常见的配置项

  • yiqingpeng
  • 2018-04-14
  • 0
  • nginx 
#全局配置 user  nobody; # 配置运行nginx的系统用户 worker_processes  1; #worker进程数,一般设置成cpu核心数成倍数events {     worker_connections  1024;  #单个进程的最大连接