nginx, उपनाम, php-fpm = फ़ाइल नहीं मिली


10

मैं DAViCal के साथ nginx स्थापित करने का प्रयास कर रहा हूं। हालाँकि, मुझे "फाइल नहीं मिली" के साथ एक "FastCGI प्रेषक में भेजा गया है:" लॉग में प्राथमिक स्क्रिप्ट अज्ञात है। लगता है कि कुछ मेरे aliasing के साथ गलत है, लेकिन मुझे यकीन है कि यह पता नहीं लगा सकता।

मेरा वर्चुअल होस्ट:

server {
listen   80; ## listen for ipv4; this line is default and implied
listen   [::]:80 default_server ipv6only=on; ## listen for ipv6

root /var/www-data;
index index.html index.htm index.shtml index.php;

# Make site accessible from http://localhost/
server_name just.a.server;

location / {
    # First attempt to serve request as file, then
    # as directory, then fall back to displaying a 404.
    try_files $uri $uri/ /index.html;
    ssi on;
    # Uncomment to enable naxsi on this location
    # include /etc/nginx/naxsi.rules
}
location ~ \.php$ {
    #try_files  $uri =404;
    include /etc/nginx/fastcgi_params;
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass unix:/var/run/php5-fpm.sock;
    fastcgi_index index.php;
}

location /kalender {
    alias  /usr/share/davical/htdocs;
}

}

मेरे उपवास_परम

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_FILENAME     $request_filename;
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   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;

fastcgi_param   HTTPS           $https;

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

आपके उत्तरों की प्रतीक्षा है।


htdocs 777 btw है
मार्टिन

जवाबों:


20

ठीक कर दिया। पता चला, आपको हर स्थान ब्लॉक के तहत php बिट को शामिल करना होगा।

location /calender {
    alias  /usr/share/davical/htdocs;

        location ~ \.php$ {
        fastcgi_split_path_info ^(.+?\.php)(/.*)?$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        }

}

बहुत बढ़िया, इसमें "शामिल" करने का एक तरीका है अन्यथा आपको हर स्थान के लिए php सामान बदलने की आवश्यकता है!
सैंड्रो एंटोउकी

यह हर OS और हर वर्जन पर काम नहीं करेगा। यह सब पर निर्भर करता है fastcgi_param SCRIPT_FILENAMEऔर इस तथ्य यह में स्थापित किया जाएगा fastcgi_paramsया fastcgi.confदेखना यह और इस
hrvoj3e

1

मैंने पाया कि मेरे php मिलान ब्लॉक को मेरे रूट लोकेशन ब्लॉक के ऊपर ले जाने से बस ठीक काम हुआ।

location ~ \.php$ {
    include fastcgi.conf;
    fastcgi_intercept_errors on;
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index  index.php;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

location / {
    root /Users/YOU/Projects/PROJECT;
}

3
हालांकि यह एक उपनाम के लिए काम करता है? यह मूल प्रश्न का उत्तर नहीं देता है।
ज्योफ्री

1
संबद्ध नहीं। nginx हमेशा regex स्थान ब्लॉक को पहले आज़माता है।
Zlatev

@Geoffrey हाँ यह उपनाम के लिए काम करता है
icc97
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.