2015-11-05 66 views
2

我是一個學習nginx的學生,請耐心等待。 我剛剛建立了雷電電磁脈衝堆和WordPress安裝按下列指南: https://www.linode.com/docs/websites/cms/how-to-install-and-configure-wordpress https://www.linode.com/docs/websites/lemp/lemp-server-on-centos-7-with-fastcginginx要求瀏覽器下載index.php而不是正常服務

然而,當我進入我的域名在我的指數應該是,我只看到一個彈出下載我的index.php 。據導遊說,我的配置中的所有內容都是正確的,並且我嘗試了一些無效的更改。這裏是我的CONFIGS:

tburg.io.conf:

server { 
    listen 80; 
    server_name www.tburg.io tburg.io; 
    access_log /var/www/tburg.io/logs/access.log; 
    error_log /var/www/tburg.io/logs/error.log; 

    location/{ 
      root /var/www/tburg.io/public_html/; 
      index index.php; 
    } 
} 

nginx.conf:

user nginx; 
worker_processes auto; 
error_log /var/log/nginx/error.log; 
pid /run/nginx.pid; 

events { 
    worker_connections 1024; 
} 

http { 
    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; 
tcp_nopush   on; 
tcp_nodelay   on; 
keepalive_timeout 65; 
types_hash_max_size 2048; 

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

# Load modular configuration files from the /etc/nginx/conf.d directory. 
# See http://nginx.org/en/docs/ngx_core_module.html#include 
# for more information. 
include /etc/nginx/conf.d/*.conf; 

server { 
    listen  80 default_server; 
    listen  [::]:80 default_server; 
    server_name _; 
    root   /usr/share/nginx/html; 

    # Load configuration files for the default server block. 
    include /etc/nginx/default.d/*.conf; 

    location/{ 
    } 

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

    error_page 500 502 503 504 /50x.html; 
     location = /50x.html { 
    } 
} 
} 

從我讀過的東西,它似乎像也許nginx的不使用FastCGI按照它應該的方式解析PHP?然而,這個問題以前的迭代似乎都不符合我配置nginx的方式,但是我不清楚我做錯了什麼。謝謝你的幫助!

回答

0

一位朋友幫我解決了這個問題。我會發布一篇指南,在我遇到此問題時試圖設置的博客中正確設置此指南,並在完成後將其發佈到此處。

相關問題