0

我一直在尝试使用 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 foundphp-fpm.

如何配置 nginx 虚拟主机以允许之后app_dev.phpapp.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;
    }
}
4

1 回答 1

0

您缺少一个重写条件来捕获所有传入请求并将它们转发到您的前端控制器。

尝试类似:

  # strip app.php/ prefix if it is present
  rewrite ^/app\.php/?(.*)$ /$1 permanent;

  location /my-app {
    index app.php;
    try_files $uri @rewriteapp;
  }

  location @rewriteapp {
    rewrite ^(.*)$ /app.php/$1 last;
  }

 # Symfony 2 app index
   location ~ ^/app\.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 $document_root$fastcgi_script_name;
  }

  # deny access to any other php files
   location ~^.*\.php(/|$) {
     deny all;
   }

您当前的配置是任何.php脚本的更通用配置,但 Symfony2 和框架通常只提供一个包罗万象的前端控制器。

于 2017-01-19T17:42:43.650 回答