Owncloud on Raspbian with no webdav



我正在尝试使用nginx作为Web服务器和raspbian作为操作系统在我的Raspberry Pi上运行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;
  }
}

解决方案:

生成正确的 SSL 证书。按照本教程操作:http://wiki.nginx.org/HttpSslModule当系统询问"公用名(例如服务器 FQDN 或您的名称)[]:"时,请输入使用的主机名/域名。

OwnCloud 使用"curl"

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

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

最新更新