网站首页 站内搜索

搜索结果

查询Tags标签: FastCGI,共有 115条记录
  • 中间件配置文件-nginx

    文章目录 前言**3.** **解析配置文件:****3.1** **全局配置:****3.2 http指令块:****3.3 server指令块:****3.4 location指令块:** 总结前言 3. 解析配置文件: 3.1 全局配置: user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/err…

    2021/10/13 7:17:38 人评论 次浏览
  • Linux搭建lnmp并部署WeCenter博客

    Linux搭建lnmp并部署WeCenter博客 WeCenter源码链接:https://down.chinaz.com/soft/432.htm 准备环境: Linux(Centos7)PHPNginxMariadb 1.关闭防火墙、Selinux service firewalld stop set enforce 02.添加yum源,安装nginx vim /etc/yum.repos.d/nginx.repo [nginx] name…

    2021/10/7 7:11:24 人评论 次浏览
  • Linux搭建lnmp并部署WeCenter博客

    Linux搭建lnmp并部署WeCenter博客 WeCenter源码链接:https://down.chinaz.com/soft/432.htm 准备环境: Linux(Centos7)PHPNginxMariadb 1.关闭防火墙、Selinux service firewalld stop set enforce 02.添加yum源,安装nginx vim /etc/yum.repos.d/nginx.repo [nginx] name…

    2021/10/7 7:11:24 人评论 次浏览
  • Nginx 文件名逻辑漏洞(CVE-2013-4547)漏洞复现

    前言 影响版本:Nginx 0.8.41 到 1.4.3 / 1.5.0 到 1.5.7。 利用条件:php-fpm.conf中的security.limit_extensions为空。 建议在学习该漏洞前先学习nginx的原理:https://zhuanlan.zhihu.com/p/136801555。security.limit_extensions设置了就只能解析指定后缀的文件,为空…

    2021/10/4 7:12:39 人评论 次浏览
  • Nginx 文件名逻辑漏洞(CVE-2013-4547)漏洞复现

    前言 影响版本:Nginx 0.8.41 到 1.4.3 / 1.5.0 到 1.5.7。 利用条件:php-fpm.conf中的security.limit_extensions为空。 建议在学习该漏洞前先学习nginx的原理:https://zhuanlan.zhihu.com/p/136801555。security.limit_extensions设置了就只能解析指定后缀的文件,为空…

    2021/10/4 7:12:39 人评论 次浏览
  • PHP+Nginx服务部署

    文章目录 一、PHP的安装和部署二、PHP的配置1、PHP配置文件的生成和修改(php-fpm.conf)2、文件www.conf的生成3、文件php.ini的生成4、php-fpm.service服务的systemctl开启 三、PHP+Nginx服务1、修改nginx配置文件2、编写php发布文件3、添加环境变量 四、PHP添加memcach…

    2021/9/28 7:12:27 人评论 次浏览
  • PHP+Nginx服务部署

    文章目录 一、PHP的安装和部署二、PHP的配置1、PHP配置文件的生成和修改(php-fpm.conf)2、文件www.conf的生成3、文件php.ini的生成4、php-fpm.service服务的systemctl开启 三、PHP+Nginx服务1、修改nginx配置文件2、编写php发布文件3、添加环境变量 四、PHP添加memcach…

    2021/9/28 7:12:27 人评论 次浏览
  • Nginx主配置文件模板——筑梦之路

    user nginx; worker_processes auto;error_log /usr/local/nginx/logs/error.log warn; pid /var/run/nginx.pid;worker_rlimit_nofile 65535;events {use epoll;worker_connections 65535;}http {include /usr/local/nginx/conf/mime.types;default_type applica…

    2021/9/18 7:05:21 人评论 次浏览
  • Nginx主配置文件模板——筑梦之路

    user nginx; worker_processes auto;error_log /usr/local/nginx/logs/error.log warn; pid /var/run/nginx.pid;worker_rlimit_nofile 65535;events {use epoll;worker_connections 65535;}http {include /usr/local/nginx/conf/mime.types;default_type applica…

    2021/9/18 7:05:21 人评论 次浏览
  • Nginx 提示 504 Gateway Time-out(The gateway did not receive a timely response from the...)解决办法

    本文介绍nginx出现504 Gateway Time-out问题的原因,分析问题并提供解决方法。1.问题分析nginx访问出现504 Gateway Time-out,一般是由于程序执行时间过长导致响应超时,例如程序需要执行90秒,而nginx最大响应等待时间为30秒,这样就会出现超时。 通常有以下几种情况…

    2021/9/4 7:05:49 人评论 次浏览
  • Nginx 提示 504 Gateway Time-out(The gateway did not receive a timely response from the...)解决办法

    本文介绍nginx出现504 Gateway Time-out问题的原因,分析问题并提供解决方法。1.问题分析nginx访问出现504 Gateway Time-out,一般是由于程序执行时间过长导致响应超时,例如程序需要执行90秒,而nginx最大响应等待时间为30秒,这样就会出现超时。 通常有以下几种情况…

    2021/9/4 7:05:49 人评论 次浏览
  • nginx高并发配置详解

    https://www.cnblogs.com/liqiu/p/3152206.html 1. worker_processes 8; nginx 进程数,建议按照cpu 数目来指定,一般为它的倍数 (如,2个四核的cpu计为8)。 查看有几个物理CPU cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l 查看cpu核数(物理…

    2021/9/1 7:07:28 人评论 次浏览
  • nginx高并发配置详解

    https://www.cnblogs.com/liqiu/p/3152206.html 1. worker_processes 8; nginx 进程数,建议按照cpu 数目来指定,一般为它的倍数 (如,2个四核的cpu计为8)。 查看有几个物理CPU cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l 查看cpu核数(物理…

    2021/9/1 7:07:28 人评论 次浏览
  • Nginx 文件名逻辑漏洞(CVE-2013-4547)复现

    影响版本:Nginx 0.8.41 ~ 1.4.3 / 1.5.0 ~ 1.5.7 参考链接:http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4547 https://blog.werner.wiki/file-resolution-vulnerability-nginx/ http://www.91ri.org/9064.html漏洞原理 这个漏洞其实和代码执行没有太大关系…

    2021/8/31 7:08:01 人评论 次浏览
  • Nginx 文件名逻辑漏洞(CVE-2013-4547)复现

    影响版本:Nginx 0.8.41 ~ 1.4.3 / 1.5.0 ~ 1.5.7 参考链接:http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4547 https://blog.werner.wiki/file-resolution-vulnerability-nginx/ http://www.91ri.org/9064.html漏洞原理 这个漏洞其实和代码执行没有太大关系…

    2021/8/31 7:08:01 人评论 次浏览
扫一扫关注最新编程教程