按教程走完之后,通过域名访问如上图所示。请问如何解决?谢谢!
先清空一下服务器缓存。
css等静态文件没有加载。
使用nginx之前能否正常工作?如果之前能正常工作,那就是nginx的配置问题了。
按照您的方法清除缓存了,但是还是没有作用。
可能是nginx出的问题。但我使用的Typecho就没有问题。您能帮我看看配置文件么?(采用的是官方的配置文件)
typecho的配置文件
server {
listen 80;
server_name 20325.jimlee.cn;
root /home/wwwroot/20325/;
index index.html index.htm index.php;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php$1 last;
}
location ~ \.php(?:$|/) {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass unix:/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
SeaFile的配置文件
server {
listen 80;
server_name pan.jimlee.cn;
proxy_set_header X-Forwarded-For $remote_addr;
location / {
fastcgi_pass 127.0.0.1:8000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_param SERVER_PROTOCOL $server_protocol;
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 SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
fastcgi_param REMOTE_ADDR $remote_addr;
access_log /var/log/nginx/seahub.access.log;
error_log /var/log/nginx/seahub.error.log;
fastcgi_read_timeout 36000;
}
location /seafhttp {
rewrite ^/seafhttp(.*)$ $1 break;
proxy_pass http://127.0.0.1:8082;
client_max_body_size 0;
proxy_connect_timeout 36000s;
proxy_read_timeout 36000s;
proxy_send_timeout 36000s;
send_timeout 36000s;
}
location /media {
root /home/user/haiwen/seafile-server-latest/seahub;
}
}
这个地址对么?
帖子至少应该有10字
应该不是这个的问题。。。
在这里是连接着的,应当没问题
这里的 user 应该是你的 linux 用户名。
非常感谢!!!已经成功了:grinning:
介绍下,你后来是怎么弄就好了,我也碰到同样的问题。
官方的配置文件有问题,
我是这样改的:
location /media {
root /opt/seafile/seafile-server-latest/seahub;
}
压根没有/home/你的用户名/haiwen/seafile-server-latest/seahub这个目录,
而在/opt/seafile下有一样的目录, 所以我就试了试, 发现成功了…