2014-01-06 32 views
-1

我试图让我的覆盆子pi上运行nginx作为web服务器和raspbian作为操作系统运行的owncloud 6.0。 不幸的是,它在管理后台显示一个webdav错误,我无法通过桌面同步客户端(移动客户端正在工作)连接到它。Raspbian与nginx的owncloud - 没有webdav

我已经尝试过几种解决方案,包括原来的configuration和第一个跟着this tutorialthis page解决方案仅使用webdav/remote.php脚本的特殊部分也无济于事。

这是我的/ etc/nginx的/网站可用/默认文件:

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; 
    } 
} 

回答

1

解决方案:

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

0

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

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