nginx理解

发布时间 2023-07-04 10:05:41作者: 东方素

1.每个server块都相当于一个虚拟主机(解析站点),包含多个location(处理请求、配置)

server
{
    listen 80;//监听端口
    server_name k2.com kh.com;//站点域名
    index index.php index.html index.htm default.php default.htm default.html;//默认访问文件
    root /www/wwwroot/k2.com/public;//运行目录

    #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
    #error_page 404/404.html;
    #SSL-END

    #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
    #error_page 404 /404.html;
    #error_page 502 /502.html;
    #ERROR-PAGE-END

    #PHP-INFO-START  PHP引用配置,可以注释或修改
    include enable-php-71.conf;
    #PHP-INFO-END

    #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
    include /www/server/panel/vhost/rewrite/k2.com.conf;
    #REWRITE-END
  
   //路由重写(上面的conf),代理转发

    location / {
      if (!-e $request_filename){
        rewrite ^(.*)$ /index.php?s=$1 last; break;
      }
    }

    //或二级目录重写

   location /目录/ {
       if (!-e $request_filename){
           rewrite ^/目录/(.*)$ /目录/index.php/$1 last;
       }
   }
 



#禁止访问的文件或目录 location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md) { return 404; } #一键申请SSL证书验证目录相关设置 location ~ \.well-known{ allow all; } #禁止在证书验证目录放入敏感文件 if ( $uri ~ "^/\.well-known/.*\.(php|jsp|py|js|css|lua|ts|go|zip|tar\.gz|rar|7z|sql|bak)$" ) { return 403; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; error_log /dev/null; access_log /dev/null; } location ~ .*\.(js|css)?$ { expires 12h; error_log /dev/null; access_log /dev/null; } access_log /www/wwwlogs/k2.com.log; error_log /www/wwwlogs/k2.com.error.log; }

 

//路由重写,代理转发

location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}

//路由重写代理转发
#REWRITE-END

#禁止访问的文件或目录
location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
{
return 404;
}