参考文章:
http://www.myxzy.com/post-464.html
https://www.cnblogs.com/crazytata/p/9686490.html
rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
yum install -y nginx
yum install php70w.x86_64 php70w-fpm.x86_64
进行完以上步骤之后,读者自行在nginx中配置web目录,已经可以正常运行了,但是此时nginx和php是以root身份运行,以最高权限运行web文件会给系统带来安全隐患,以下为权限配置示例
vi /etc/nginx/conf.d/default.conf
index index.html index.htm;
修改为:
index index.php index.html index.htm; #添加index.php,index.php必须为第一个
2.
把FastCGI server这行下面的location的注释去掉,并修改成下面这样子
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /usr/share/nginx/html; #网站根目录
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
service nginx restart #重启nginx
service php-fpm start #开启php-fpm
3.
在网站根目录新建index.php文件
vim /usr/share/nginx/html/index.php
4.
输入内容:
<?php
phpinfo();
?>
5.
在浏览器中输入虚拟机ip,已经可以看到phpinfo的信息了
在windows上修改hosts文件,添加一行
192.168.6.114 www.test1.com #配置虚拟机ip对应域名
6.
现在就可以在windows上用www.test1.com访问虚拟机配置的服务器了
----------------------------------------------------------------------------------------------------------------------------
接下来,现在dnspod.php到/usr/share/nginx/html/,同时mv dnspod.php index.php
http://www.myxzy.com/post-464.html
ddns+ros(routeros)+centos7.6+nginx+php+dnspod
原文:https://www.cnblogs.com/itfat/p/10928268.html