-1

我正在尝试使用 nginx 作为 Web 服务器和 raspbian 作为 os 在我的树莓派上运行 owncloud 6.0。不幸的是,它在管理后端显示 webdav 错误,我无法通过桌面同步客户端连接到它(移动客户端正在工作)。

我已经尝试了几种解决方案,包括原始配置,并首先遵循本教程此页面使用仅针对 webdav / remote.php 脚本的特殊部分的解决方案也没有帮助。

这是我的 /etc/nginx/sites-available/default 文件:

server {
  listen 80;
  server_name 192.168.0.7;
  return 301 https://$server_name$request_uri;  # enforce https
}

server {
  listen 443 ssl;
  server_name 192.168.0.7;
  ssl_certificate /etc/nginx/cert.pem;
  ssl_certificate_key /etc/nginx/cert.key;

  root /var/www/;
  index index.php;

  client_max_body_size 2G; # set max upload size
  fastcgi_buffers 64 4K;

  rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect;
  rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect;
  rewrite ^/webdav(.*)$ /remote.php/webdav$1 redirect;

  error_page 403 = /core/templates/403.php;
  error_page 404 = /core/templates/404.php;

  location = /robots.txt {
    allow all;
    log_not_found off;
    access_log off;
  }

  location ~ ^/owncloud/(data|config|\.ht|db_structure\.xml|README) {
    deny all;
  }

  location / {
    rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
    rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;

    rewrite ^/.well-known/carddav /remote.php/carddav/ redirect;
    rewrite ^/.well-known/caldav /remote.php/caldav/ redirect;

    rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;

    try_files $uri $uri/ index.php;
  }

  location ~ ^(.+?\.php)(/.*)?$ {
    try_files $1 = 404;
    fastcgi_pass unix:/var/run/php5-fpm.sock;

    fastcgi_index index.php;

    fastcgi_param SCRIPT_FILENAME /var/www/public$fastcgi_script_name;
    include fastcgi_params;

    fastcgi_param HTTPS on;
  }

  location ~* ^.+\.(jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ {
    expires 30d;
    # Optional: Don't log access to assets
    access_log off;
  }
}
4

2 回答 2

1

解决方案:

生成正确的 SSL 证书。遵循本教程:http ://wiki.nginx.org/HttpSslModule 当询问“通用名称(例如服务器 FQDN 或您的名称)[]:”时,输入使用的主机名/域名。

于 2014-01-06T17:42:14.397 回答
0

OwnCloud 使用“curl”来执行某些功能,因此您需要检查您的 PHP 配置是否启用了“open_basedir”指令,因为已知这会导致 curl 出现问题。

注意:将 OwnCloud 文件夹包含在“open_basedir”列表中是不够的,因为至少在某些 PHP 版本中存在(已知和报告的)错误。

于 2014-06-25T14:41:01.000 回答