मैंने nginx
+ का उपयोग करके एक परीक्षण सर्वर स्थापित किया है php-fpm
। मैंने निम्नलिखित सभी की कोशिश की है:
Nginx + Php5-fpm php फ़ाइलों को प्रस्तुत नहीं कर रहा है
nginx + php fpm -> 404 php पृष्ठ - फ़ाइल नहीं मिली
PHP फ़ाइलों तक पहुँचते समय, nginx 404 त्रुटि फेंकता है
संक्षेप में मैंने क्या कोशिश की है:
- फिर से स्थापित करने।
- स्क्रिप्ट विशेषाधिकारों को बदलना (उन्हें बदलना
0777
)। fastcgi_intercept_errors on
।- चेक किए गए
root
स्तरों पर निर्देश:server
,location
औरlocation ~ \.php
। fastcgi_param SCRIPT_FILENAME
निर्देश की जाँच की ।
सर्वर 404 पर (और केवल पर) .php
स्क्रिप्ट लौटाता है । मैं उनका नाम बदल सकता हूं .html
और वे ठीक हो जाएंगे। मैं इस बारे में कैसे जा सकता हूं?
यह मेरा है nginx.conf
:
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 2;
include /etc/nginx/conf.d/*.conf;
index index.html index.htm;
server {
listen 80;
server_name _;
root /var/www/html;
location / {
root /var/www/html;
index index.php index.html index.htm;
}
error_page 404 /404.html;
location = /40x.html {
#root /var/www/html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
#root /var/www/html;
}
location ~ \.php$ {
root /var/www/html;
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
}