2014-01-06 74 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中存在(已知和已報告的)錯誤。