本文主要是介绍linux 网络系统管理 技能大赛 nginx fastCGI配置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
WEB服务
安装 nginx 软件包
配置文件名为 ispweb.conf,放置在/etc/nginx/conf.d/目录下
网站根目录为/mut/crypt(目录不存在需创建)
启用 FastCGI 功能,让 nginx 能够解析 php 请求
ndex.php 内容使用 Welcome to 2022 Computer Network Application contest!
vim /etc/nginx/conf.d/ispweb.confserver {listen 80;root /mut/crypt;index index.php ;location ~ \.php$ {include snippets/fastcgi-php.conf;fastcgi_pass unix:/run/php/php7.3-fpm.sock;}
}
~ //如果让人编写 很头疼vim /etc/nginx/sites-enabled/default//21-71行 复制到ispweb.conf里面 我们自行修改:21,71y //进行复制21-71rm sites-enabled/default //此时需要删除默认的default文件,不然冲突apt -y install php-fpm //安装php-fpm
mkdir /mut/crypt -p
echo "Welcome to 2022 Computer Network Application contest!" > /mut/crypt/index.php
测试
apt -y install curlroot@ispsrv:/etc/nginx# curl localhost
Welcome to 2022 Computer Network Application contest!
root@ispsrv:/etc/nginx#
这篇关于linux 网络系统管理 技能大赛 nginx fastCGI配置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!