我一直在尝试使用 php 7.1 升级到 php 7.1 phpbrew
,并选择使用 nginx 安装它,因为我到处都读到它比 Apache 更简单(以我的拙见,没那么简单)。
当我尝试使用 nginx 运行 Symfony2 时,我遇到了这个文档页面,它提供了 nginx 上 Sf2 的基本配置。
我设法将 php-fpm 配置为 serve app_dev.php
,并且每个文件都以.php
正确结尾。但是,一旦我转到不同的 URL(/home
例如),nginx 配置就会中断,并且我File not found
在php-fpm
.
如何配置 nginx 虚拟主机以允许之后app_dev.php
或app.php
重写所有内容(就像modrewrite
在 apache2 上一样)?
我的 nginx 文件供参考:
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ =404;
}
location /my-app {
index web/app_dev.php;
try_files $uri /web/app.php$is_args$args;
}
location /dist {
root /usr/share/nginx/html;
index depp/index.php;
try_files $uri /depp/index.php$is_args$args;
}
location ~ \.php$ {
fastcgi_pass unix:/home/gabriel/.phpbrew/php/php-7.1.0/var/run/php-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $realpath_root;
fastcgi_param REQUEST_URI $uri?$args;
}
}