Alpine Linux 安装PHP7 Nginx

2019-05-09丨运维丨暂无评论 丨1277 次阅读

第1步:安装Nginx Web服务器

apk update && apk upgrade

apk add nginx

第2步:在Alpine Linux上安装PHP 7

apk add php7 php7-fpm php7-opcache

第3步:启动php-fpm7 Nginx服务器
添加开机启动

rc-update add nginx default

rc-update add php-fpm7 default

rc-service nginx restart

rc-service php-fpm7 restart

第4步:配置PHP 7
/etc/nginx/conf.d/下默认配置修改

 location ~ \.php$ {
              fastcgi_pass      127.0.0.1:9000;
              fastcgi_index     index.php;
              include           fastcgi.conf;
    }

其他就和平时修改Nginx一样。

热门文章

最新回复

标签

发表新评论