标签:style mysq start cat pass inf test server 服务器
1配置LAMP
yum -y install httpd mariadb mariadb-server php php-mysql (mariadb是mysql的分支)
2启动服务
systemctl start httpd
systemctl start mariadb
建立测试文件
vim /var/www/html/test.php
<?php
phpinfo();
?>
测试http://192.168.200.113/test.php
修改服务器的Nginx
vim /usr/local/nginx/conf/nginx.conf
location ~* \.php$ {
proxy_pass http://192.168.20
0.113;
}
重新加载主配置文件
killall -HUP nginx
测试服务器是否可以解析PHP
192.168.200.112/test.php
标签:style mysq start cat pass inf test server 服务器
原文地址:https://www.cnblogs.com/shinian12138/p/11528843.html