第一步,一键安装所需程序 yum install -y nginx php php-mysql php-fpm mariadb-server 第二步,修改Nginx配置文件/etc/nginx/nginx.conf 重启Nginx和php-fpm systemctl restart nginx (注 ...
分类:
Web程序 时间:
2019-05-07 21:18:03
阅读次数:
158
环境安装安装nginxgitfcgiwrapnginx配置如下server{listen8800default_server;root/home/git;indexindex.htmlindex.htmindex.nginx-debian.html;server_name_;location~/git(/.*){#try_files$uri$uri/=404;#autoindexon;fastcg
分类:
Web程序 时间:
2019-05-07 18:14:10
阅读次数:
263
/usr/local/php/etc/php-fpm.conf 优化 ...
分类:
Web程序 时间:
2019-05-05 10:25:16
阅读次数:
319
https://www.cnblogs.com/kevingrace/p/8471827.html 一、分布式文件系统介绍分布式文件系统:Distributed file system, DFS,又叫做网络文件系统:Network File System。一种允许文件通过网络在多台主机上分享的文件系 ...
分类:
系统相关 时间:
2019-05-03 11:18:31
阅读次数:
193
方法一 修改php.ini文件和php fpm.conf php.ini文件在我使用的发行版本 php fpm.conf文件在 如果找不到可以使用 搜索 在文件中搜索这两个选项,并修改为On 修改完,重启php服务 方法二 在需要调试的文件前添加以下内容 ...
分类:
Web程序 时间:
2019-05-02 21:19:58
阅读次数:
195
约定几个目录/usr/local/php/sbin/php-fpm/usr/local/php/etc/php-fpm.conf/usr/local/php/etc/php.ini 一,php-fpm的启动参数 帮助 01 02 03 04 05 06 07 08 09 10 11 12 13 #测 ...
分类:
Web程序 时间:
2019-05-01 13:33:59
阅读次数:
146
在centos上成功编译安装nginx 1.4、php 5.4并成功启动nginx和php-fpm后,访问php提示"File not found.",同时在错误日志中看到: 在centos上成功编译安装nginx 1.4、php 5.4并成功启动nginx和php-fpm后,访问php提示"Fil ...
分类:
其他好文 时间:
2019-05-01 01:39:47
阅读次数:
163
1.php最常见的五种运行模式。 CGI 通用网关接口 FastCGI 常驻内存的CGI CLI 命令行 Web模块 Apache等Web服务器 模块的形式加载php进程 ISAPI 已经不用了 ...
分类:
Web程序 时间:
2019-04-27 10:08:56
阅读次数:
140
cgi 通用网关接口,接受到动态请求,web服务器会根据这次请求的内容,然后会fork一个新进程来运行, 这个进程会把处理完的数据返回给web服务器,最后web服务器把内容发送给用户,刚才fork的进程也随之退出。 如果下次用户发出请求,那么web服务器又再次fork一个新进程 fast-cgi 常 ...
分类:
Web程序 时间:
2019-04-26 09:18:52
阅读次数:
117