如何使用 NGINX 设置 PHP 7
How to set up PHP 7 with NGINX
我在我的开发 Debian Stable 上安装了 PHP 7 Nightly 和 Nginx 1.9.7 (Mainline):
$ curl http://nginx.org/keys/nginx_signing.key | apt-key add -
$ echo -e 'deb http://nginx.org/packages/mainline/debian/ jessie nginx\ndeb-src http://nginx.org/packages/mainline/debian/ jessie nginx' > /etc/apt/sources.list.d/nginx.list
$ echo -e 'deb http://repos.zend.com/zend-server/early-access/php7/repos ubuntu/' > /etc/apt/sources.list.d/php.list
$ apt-get -y update && time apt-get -y dist-upgrade
$ apt-get -y --force-yes install --fix-missing nginx php7-nightly
$ service nginx restart
我在 /etc/nginx/conf.d/php.conf
中有这个配置文件(default.conf 未注释)。这是原始的 default.conf,我只是取消注释 PHP fastCGI 行:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
我还没有在网上找到任何关于如何使用 PHP 7 设置 Nginx Mainline 的教程。 :(
谢谢!
快速查看 zend 提供的包(您正在安装的包)后,您必须为您的初始化系统 (systemd) 编写脚本来启动和管理 php- fpm 进程.
二进制文件安装在 /usr/local/php7/sbin/php-fpm
中。您还必须修改 /usr/local/php7/etc
中的配置文件。主要的变化是确保 fpm 有一个池监听地址 127.0.0.1 在端口 9000.
我在我的开发 Debian Stable 上安装了 PHP 7 Nightly 和 Nginx 1.9.7 (Mainline):
$ curl http://nginx.org/keys/nginx_signing.key | apt-key add -
$ echo -e 'deb http://nginx.org/packages/mainline/debian/ jessie nginx\ndeb-src http://nginx.org/packages/mainline/debian/ jessie nginx' > /etc/apt/sources.list.d/nginx.list
$ echo -e 'deb http://repos.zend.com/zend-server/early-access/php7/repos ubuntu/' > /etc/apt/sources.list.d/php.list
$ apt-get -y update && time apt-get -y dist-upgrade
$ apt-get -y --force-yes install --fix-missing nginx php7-nightly
$ service nginx restart
我在 /etc/nginx/conf.d/php.conf
中有这个配置文件(default.conf 未注释)。这是原始的 default.conf,我只是取消注释 PHP fastCGI 行:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
我还没有在网上找到任何关于如何使用 PHP 7 设置 Nginx Mainline 的教程。 :(
谢谢!
快速查看 zend 提供的包(您正在安装的包)后,您必须为您的初始化系统 (systemd) 编写脚本来启动和管理 php- fpm 进程.
二进制文件安装在 /usr/local/php7/sbin/php-fpm
中。您还必须修改 /usr/local/php7/etc
中的配置文件。主要的变化是确保 fpm 有一个池监听地址 127.0.0.1 在端口 9000.