所以我的任务是使用CakePHP创建一个站点,所以我下载了最新的2.2.3,我需要在我的本地nginx 1.2.4服务器上配置它。
我有server_block
工作,但由于某种原因我无法加载任何CSS。测试主页还报告网址重写无法正常工作。
我一直在阅读一些文章和问题,但似乎没有人能够解决这个问题。到目前为止,我已经引用了,
我的css链接看起来像这样,
<link rel="stylesheet" type="text/css" href="/Users/david/Sites/example.com/css/cake.generic.css" />
我需要弄清楚为什么Nginx不会让我的CSS加载。到目前为止,我只能发现它将$_SERVER['DOCUMENT_ROOT']
附加到我的所有链接上,这显然意味着我的css将被错误地链接。我需要找出谁阻止cakephp获取这些额外信息。链接将被传递到HtmlHelper,如下所示string '/Users/david/Sites/example.com//Users/david/Sites/example.com/css/cake.generic.css' (length=86)
目前我的nginx配置服务器块如下所示。
server {
server_name example.com;
root /Users/david/Sites/example.com/app/webroot/;
access_log /usr/local/var/log/nginx/example.com.access.log;
error_log /usr/local/var/log/nginx/example.com.error.log;
listen 80;
rewrite_log on;
# rewrite rules for cakephp
location / {
index index.php index.html;
# If the file exists as a static file serve it
# directly without running all
# the other rewite tests on it
if (-f $request_filename) {
break;
}
if (!-f $request_filename) {
rewrite ^(.+)$ /index.php?url=$1 last;
break;
}
}
location ~* \favicon.ico$ {
expires 6m;
}
location ~ ^/img/ {
expires 7d;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SERVER_NAME example.com;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
FastCGIParams
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_NAME $request_filename;
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 HTTPS $https if_not_empty;
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;
# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param REDIRECT_STATUS 200;
fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
fastcgi_intercept_errors on;
答案 0 :(得分:4)
所以我设法找出问题所在。事实证明,它是core.php
如果您将Configure::write('App.baseUrl', env('SCRIPT_NAME'));
更改为Configure::write('App.baseUrl', '/');
,那么它似乎一切正常,并将正确路由到您的css文件。
我的nginx配置如下所示。
server {
listen 127.0.0.1:80;
server_name example.com.ukwm157;
root /Users/david/Sites/example.com/app/webroot;
index index.php index.html;
log_not_found off;
charset utf-8;
access_log /usr/local/var/log/nginx/example.com.access.log main;
error_log /usr/local/var/log/nginx/example.com.error.log;
location / {
index index.php index.html index.htm;
if (-f $request_filename) {
break;
}
if (-d $request_filename) {
break;
}
rewrite ^(.+)$ /index.php?q=$1 last;
}
# Static files.
# Set expire headers, Turn off access log
location ~* \favicon.ico$ {
access_log off;
expires 1d;
add_header Cache-Control public;
}
location ~ ^/(img|cjs|ccss)/ {
access_log off;
expires 7d;
add_header Cache-Control public;
}
# Deny access to .htaccess files,
# git & svn repositories, etc
location ~ /(\.ht|\.git|\.svn) {
deny all;
}
location ~ .php?$ {
#if (!-e $document_root$document_uri){return 404;}
fastcgi_pass 127.0.0.1:9001;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
答案 1 :(得分:0)
以下配置适用于Cake 2.x
// bind the options for the distance
this.BindSpinner(ViewModel,
vm => vm.TravelLimitSelected,
vm => vm.CurrentTravelLimit,
vm => vm.TravelLimitChoices.Distances,
f => f.travelLimitSpinner,
(items) =>
new ActionSpinnerAdapter<DistanceChoiceModel>((c, p) => new DistanceLimitViewHost(c, p), items));
}
答案 2 :(得分:-1)
我认为问题在于您使用的是文件路径,而不是网址。