linux(ubuntu)安装 nginx + php7.0-fpm

安装 php7.0-fpm

sudo apt-get install php7.0-fpm

配置nginx

nginx安装参考:linux(ubuntu) 安装 nginx

修改配置文件如下:

server{
    listen 80;
    server_name www.liuchang.org liuchang.org; # 你自己的域名
    root /home/liuchang/www/liuchangorg; # 指向自己的网站
    location / {
        try_files $uri $uri/ =404;
    }
    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    }
    location ~ /\.ht {
        deny all;
    }
}

然后重启nginx

sudo service nginx restart

然后,通过 www.liuchang.org 或 liuchang.org就可以访问网站了。

发表评论