這是過去兩天的一場鬥爭。我做了很多搜索,找不到任何解決辦法。Nginx PHP頁面下載而不是顯示
這裏是我的nginx.conf:
user www-data;
worker_processes 4;
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;
##
# 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/*;
}
這裏是在/ etc/nginx的/我的默認文件站點啓用-:
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html/;
index index.php index.html index.htm;
server_name [redacted server IP];
location/{
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ /admin/ {
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/.htpasswd;
}
location ~ \.php$ {
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;
}
}
將網頁存儲在/ usr /共享/ nginx的/ html/admin/index.php - 它提示輸入用戶名/密碼(工作正常),但只要我登錄,它就會下載而不是顯示php網頁。
如果我把'location〜/ admin /'塊放在'location〜.php $'塊之後,它可以工作,但是不會進行驗證。
我在另一個文件夾中編寫的腳本在調用'/usr/share/nginx/html/api/XXX.php'文件夾時會正常工作(它將插入到MySQL數據庫中),但它只是返回JSON的東西。
你對我的幫助很大,我真的很感激。
取消註釋1行,它將起作用。 – r3wt 2014-12-03 20:47:35
@ r3wt我試過了,沒有運氣。我將更改帖子中的代碼以顯示 – Skull1234567 2014-12-03 21:10:54