2012-07-31 33 views
0

我在Windows上用zend框架爲本地開發設置了一個nginx + php web服務器。 我通常只是在每個項目的www根目錄下創建一個新文件夾,然後創建一個conf文件來重寫項目。帶有多個zend項目的Nginx

這裏的錯誤是我無法訪問我的靜態內容。當我嘗試打開圖像文件或CSS時,出現500錯誤。而且我也沒有東西我的項目conf是100%正確..:\

你們能幫我嗎?

這是我的conf文件:

fastcgi.conf

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 
fastcgi_param QUERY_STRING  $query_string; 
fastcgi_param REQUEST_METHOD  $request_method; 
fastcgi_param CONTENT_TYPE  $content_type; 
fastcgi_param CONTENT_LENGTH  $content_length; 

fastcgi_param SCRIPT_NAME  $fastcgi_script_name; 
fastcgi_param REQUEST_URI  $request_uri; 
fastcgi_param DOCUMENT_URI  $document_uri; 
fastcgi_param DOCUMENT_ROOT  $document_root; 
fastcgi_param SERVER_PROTOCOL $server_protocol; 
fastcgi_param HTTPS    $https if_not_empty; 

fastcgi_param GATEWAY_INTERFACE CGI/1.1; 
fastcgi_param SERVER_SOFTWARE nginx/$nginx_version; 

fastcgi_param REMOTE_ADDR  $remote_addr; 
fastcgi_param REMOTE_PORT  $remote_port; 
fastcgi_param SERVER_ADDR  $server_addr; 
fastcgi_param SERVER_PORT  $server_port; 
fastcgi_param SERVER_NAME  $server_name; 

# PHP only, required if PHP was built with --enable-force-cgi-redirect 
fastcgi_param REDIRECT_STATUS 200; 

nginx.conf

worker_processes 1; 

events { 
    worker_connections 1024; 
} 

http { 
    include  mime.types; 
    default_type application/octet-stream; 

    keepalive_timeout 65; 

    gzip on; 

    upstream php { 
     server  localhost:8993; 
     server  localhost:8994; 
     server  localhost:8995; 
     server  localhost:8996; 
     server  localhost:8997; 
     } 

    server { 
     listen  *; 
     server_name_in_redirect off; 

     charset utf-8; 

     location/{ 
      root www; 
      index index.php index.html index.htm; 
     } 

     error_page 404    /404.html; 
     location = /404.html { 
     } 

     location ~ \.php$ { 
      root   www; 
      try_files  $uri =404; 
      fastcgi_pass php; 
      include  fastcgi.conf; 
     } 

     location ~ /\.ht { 
      deny all; 
     } 

     include sites/*.conf; 
    } 
} 

例如項目的conf

location /zproject { 
    root www/zproject; 
    try_files $uri $uri/ /zproject/index.php$is_args$args; 
} 

----- UPDATE (從commment請求)

從access.log的

127.0.0.1 - - [31 /月/ 2012:11:15:46 0100]「GET/zproject /內容/文件/包.png HTTP/1.1「404 43648 "http://localhost/zproject"」Mozilla/5.0(Windows NT 6.1; WOW64) 爲AppleWebKit/536.11(KHTML,例如Gecko)鉻/ 20.0.1132.57 Safari瀏覽器/ 536.11"

從是error.log

2012/07/31十一時15分46秒[錯誤] 53696#53724:* 5 CreateFile() 「D:\ webserver/html/zproject/content/files/packs.png」失敗(3:系統 找不到指定的路徑),client:127.0.0.1,server :,請求: 「GET /zproject/content/files/packs.png HTTP/1.1」,主機:「localhost」, 推薦人:"http://localhost/zproject"

據我所知,似乎他在尋找錯誤位置的文件。 packs.png的正確位置是:「D:\ webserver/www/zproject/content/files/packs.png」而不是「D:\ webserver/html/....」

+0

你有什麼你的nginx錯誤日誌? – 2012-07-31 10:13:37

+0

@JamesButler更新日誌主要問題:) – MGP 2012-07-31 10:21:45

回答

0

好吧,我只需要添加:root「D:\ webserver \ www」;到主服務器配置。一切似乎按預期工作:)