2017-04-24 67 views
-1

我有SF3应用程序,它在apache2上运行良好,但是当我使用nginx http://localhost/SF3-REST-USER-JWT/web/app_dev.php时,运行也很好,生成一个起始页面。当我尝试使用/ api之类的其他路由时,nginx给了我404。看起来,我的配置中的nginx根本不喜欢漂亮的路由。它寻找/ api目录Symfony 3和nginx

2017/04/24 21:51:42 [error] 23683#23683:* 2 open()“/ var/www/html/SF3-REST-USER-JWT/web/app_dev.php/api“失败(20:不是目录),客户端:127.0.0.1,服务器:_,请求:”GET /SF3-REST-USER-JWT/web/app_dev.php/api HTTP/1.1“,主机:“localhost”

为什么?我该怎么做?

listen 80 default_server; listen [::]:80 default_server;

# SSL configuration 
# 
# listen 443 ssl default_server; 
# listen [::]:443 ssl default_server; 
# 
# Note: You should disable gzip for SSL traffic. 
# See: https://bugs.debian.org/773332 
# 
# Read up on ssl_ciphers to ensure a secure configuration. 
# See: https://bugs.debian.org/765782 
# 
# Self signed certs generated by the ssl-cert package 
# Don't use them in a production server! 
# 
# include snippets/snakeoil.conf; 

root /var/www/html; 

# Add index.php to the list if you are using PHP 
index index.php index.html index.htm index.nginx-debian.html; 

server_name _; 


location ~ ^/(app_dev|config)\.php(/|$) { 
     include snippets/fastcgi-php.conf; 
     fastcgi_pass unix:/var/run/php7.1-fpm.sock; 
     fastcgi_split_path_info ^(.+\.php)(/.*)$; 
     include fastcgi_params; 
    # When you are using symlinks to link the document root to the 
    # current version of your application, you should pass the real 
    # application path instead of the path to the symlink to PHP 
    # FPM. 
    # Otherwise, PHP's OPcache may not properly detect changes to 
    # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus 
    # for more information). 
     fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; 
     fastcgi_param DOCUMENT_ROOT $realpath_root; 
} 

nginx.conf

user www-data; 
worker_processes auto; 
pid /run/nginx.pid; 

events { 
    worker_connections 768; 
    # multi_accept on; 
} 

http { 

    ## 
    # Basic Settings 
## 

sendfile on; 
tcp_nopush on; 
tcp_nodelay on; 
keepalive_timeout 65; 
types_hash_max_size 2048; 
# server_tokens off; 

# server_names_hash_bucket_size 64; 
# server_name_in_redirect off; 

include /etc/nginx/mime.types; 
default_type application/octet-stream; 

## 
# SSL Settings 
## 

ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE 
ssl_prefer_server_ciphers on; 

## 
# Logging Settings 
## 

access_log /var/log/nginx/access.log; 
error_log /var/log/nginx/error.log; 

## 
# Gzip Settings 
## 

gzip on; 
gzip_disable "msie6"; 

# gzip_vary on; 
# gzip_proxied any; 
# gzip_comp_level 6; 
# gzip_buffers 16 8k; 
# gzip_http_version 1.1; 
# gzip_types text/plain text/css application/json       application/javascript text/xml application/xml application/xml+rss  text/javascript; 

## 
# Virtual Host Configs 
## 

include /etc/nginx/conf.d/*.conf; 
include /etc/nginx/sites-enabled/*; 
} 
+0

您是否试过本指南? http://symfony.com/doc/current/setup/web_server_configuration.html#nginx –

+0

这正是我所做的。 – Vladimir

+0

这只是与sf问题,因为我的其他wp应用程序工作在nginx – Vladimir

回答

0
Symfony doc gives us fastcgi_pass unix:/var/run/php5-fpm.sock 

但在Ubuntu 16.04应该是fastcgi_pass UNIX:/run/php/php5-fpm.sock。那是我的问题。

0

正如你在Symfony's doc中看到的,root应该指向web目录。

我想,那/var/www/html是你的整个本地主机服务器的根,你可能无法改变它,因为你有其他项目,你会无法访问它们。

没有改变这个root值,你有两个选择。

第一个是修复location部分所以不是:

位置〜^ /(app_dev |配置).PHP(/ | $){

它应该是这样的:

location ~ ^/{path_relative_to_root}/(app_dev|config)\.php(/|$) { 

此基础上,你试过网址http://localhost/SF3-REST-USER-JWT/web/app_dev.php的信息,该路径可能是/SF3-REST-USER-JWT/web/,所以它应该是:

location ~ ^/SF3-REST-USER-JWT/web/(app_dev|config)\.php(/|$) { 

其次是为此项目创建单独的虚拟主机,因此它可以具有完全独立的域(例如, symfonyapp.local或其他)。

要做到这一点,您应该在/etc/nginx/sites-available/中创建单独的配置文件,其内容类似于Symfony文档示例中所示的内容。只需要改变根路径和域名。当然,您需要通过在sites_enabled中创建符号链接来启用此nginx网站。

然后,您还需要将此域添加到您的操作系统中的hosts文件。

在这种情况下,您将可以通过简单的http://symfonyapp.local/app_dev.php访问您的网站。

+0

谢谢,但位置〜^/SF3-REST-USER-JWT/web /(app_dev | config)\ .php(/ | $)它给我502甚至在现在的第一种情况下坏网关 – Vladimir

+0

我不知道你**精确的**服务器配置,所以我不能给你100%准备好的解决方案。 –