今天重启了下服务器,访问网址后出现ERR_CONNECTION_REFUSED,网上查了很多,说是防火墙问题造成的,但是我服务器本身好像没有开启防火墙的。因为网址是php程序,然后考虑到是不是php相关服务(php-fpm、nginx)没有启动造成的?结果就是这个原因造成的。操作如下: 1、检查ph ...
分类:
系统相关 时间:
2020-05-16 12:46:57
阅读次数:
178
我的环境CentOS 7.5 首先安装 nginx docker pull nginxdocker pull php:7.1.30-fpm 安装完成之后进行配置,首先要确定网站目录、nginx配置文件目录 mkdir /var/www mkdir /etc/confcd /var/confvim t ...
分类:
Web程序 时间:
2020-05-15 09:35:32
阅读次数:
73
环境: RHEL7.4 最小化安装 nginx版本:nginx/1.18.0 php版本:PHP Version 5.4.16 增加额外nginx php最新资源库 rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-relea ...
分类:
Web程序 时间:
2020-05-14 01:22:11
阅读次数:
96
location ~ \.php$ { root /srv/oa/xinhu/; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /srv/oa/xinhu/$fastcgi_sc ...
分类:
Web程序 时间:
2020-05-10 12:33:55
阅读次数:
76
本文编写时间:2020年5月7日8点22分配置环境:Win服务器:2008Linux服务器:CentOS8使用工具:Jexus独立版6.1C#框架:EF6目前dotNet迁移至Linux的方法,1、Mono,2、Fastcgi,3、Jexus由Mono作为最主要的驱动,Jexus和Fastcgi也是基于Mono作为驱动,来启动dotNet项目的。Jexus官方地址:https://www.jexu
分类:
Web程序 时间:
2020-05-08 09:28:01
阅读次数:
96
首先先安装php-fpm, yum install php-fpm 查看 php-fpm.conf [www] listen = /tmp/php-cgi.sock nginx.conf server{ location ~ \.php{fastcgi_pass unix:/tmp/php-cgi. ...
分类:
Web程序 时间:
2020-05-03 18:56:16
阅读次数:
83
九、期中架构LNMP章节 (一)LNMP架构说明 (二)LNMP架构工作原理 (三)LNMP架构部署 1)安装LNMP相关软件 ①. 部署Linux系统 基础优化操作要完成(防火墙关闭 关闭selinux /tmp权限为1777) ②. 部署nginx服务 见上一章节 ③. 部署mysql服务 yu ...
分类:
系统相关 时间:
2020-05-03 00:31:57
阅读次数:
86
SpringCloudAlibaba实战教程系列 docker:官网 中文官网 docker:镜像官网: Docker 命令大全 一、拉取nginx官方镜像,镜像更多解释 1、登录docker 镜像官网搜索nginx,找到制定的版本拉去,这里使用默认最新nginx版本。 docker pull ng ...
分类:
其他好文 时间:
2020-05-01 22:34:06
阅读次数:
91
nginxphp: image: richarvey/nginx-php-fpm:1.2.5 volumes: - /data/www/www.cnvp.com:/var/www/html - /etc/localtime:/etc/localtime:ro ports: - 9000:80 env ...
分类:
其他好文 时间:
2020-04-30 11:21:12
阅读次数:
65
目录 介绍 深入CGI协议 CGI的运行原理 CGI协议的缺陷 深入FastCGI协议 FastCGI协议运行原理 为什么是 FastCGI 而非 CGI 协议 CGI 与 FastCGI 架构 再看 FastCGI 协议 消息头信息 消息类型定义 Web 服务器和 FastCGI 交互过程 为什么 ...
分类:
其他好文 时间:
2020-04-28 13:07:52
阅读次数:
59