2014-06-05 25 views
0

http://62-210.217.242/forums/SMF對Nginx的圖像錯誤

我擁有所有正確的nginx的conf和權限,任何人都可以給我什麼可能會造成這個問題的見解?

我已經嘗試使用 location /forums { try_files /forums/$uri/ /forums/$uri /forums/index.php; } 修復它,以取得成功。謝謝。

看起來它無法獲取主題文件夾中的圖像,儘管它們存在。

以下是完整CONFIGS:

 server { 
     listen 8080; 
     #listen [::]:80 default_server ipv6only=on; 
     root /usr/share/nginx/html; 
     index index.html index.php; 

     server_name localhost; 

     location /forums { 
     try_files /forums/$uri/ /forums/$uri /forums/index.php; 
     } 
     location/{ 
       try_files $uri $uri/ /index.php; 
     } 

     #error_page 404 /404.html; 

     # redirect server error pages to the static page /50x.html 
     # 
     #error_page 500 502 503 504 /50x.html; 
     #location = /50x.html { 
     #  root /usr/share/nginx/html; 
     #} 

     location ~ \.php$ { 
       fastcgi_pass 127.0.0.1:9000; 
       fastcgi_index index.php; 
       include fastcgi_params; 
     } 
} 

nginx.conf

user www-data; 
worker_processes 16; 
pid /run/nginx.pid; 

events { 
     worker_connections 5768; 
     # multi_accept on; 
} 

http { 

     ## 
     # Basic Settings 
     ## 
     server_tokens off; 
     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; 
     port_in_redirect off; 
     gzip on; 
     gzip_types text/css text/xml text/javascript application/x-javascript; 
     gzip_vary on; 
     include /etc/nginx/mime.types; 
     default_type application/octet-stream; 

     ## 
     # Logging Settings 
     ## 

     access_log off; 
     error_log /var/log/nginx/error.log; 

     include /etc/nginx/conf.d/*.conf; 
     include /etc/nginx/sites-enabled/*; 
} 
+0

提供完整配置 –

+0

添加完整配置 – user3711500

回答

0

嘗試:

location /forums { 
    try_files $uri $uri/ /forums/index.php; 
} 

$uri變量已經包含/forum前綴。沒有必要添加它。

+0

剛剛嘗試過,仍然沒有成功,因爲你看到 – user3711500