大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
1.进行更新 (具体文档请联系本博主,首页有博主邮箱)
成都创新互联自2013年起,是专业互联网技术服务公司,拥有项目成都网站建设、成都网站制作网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元南平做网站,已为上家服务,为南平各地企业和个人服务,联系电话:13518219792
2.安装MySQL
# 连续输入两次相同的密码
3.安装nginx和php
添加nginx和php的ppa源
4.安装Nginx
5.安装PHPFastCGI管理器
6.修改配置文件(此步可以省略)
7.查看 listen = /run/php/php7.0-fpm.sock 是否被开启
一般为开启
8.修改重启下 php-fpm7.0 (可以忽略)
9.修改nginx配置文件
sudo vim /etc/nginx/sites-enabled/default
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html; 添加index.php
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ { 在此把#去掉
include snippets/fastcgi-php.conf; 在此把#去掉
#
# # With php7.0-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php7.0-fpm:
fastcgi_pass unix:/run/php/php7.0-fpm.sock; 在此把#去掉
} 在此把#去掉
10.socket 方式 必须和上面socket的listen路径一样
11.重启nginx
12.在/var/www/html/目录下,新建个index.php测试下看看
13.搭建完成 探针显示
PHP Version 7.0.18-0ubuntu0.16.04.1