Your Personal Owncloud

 

I have normal owncloud deployment on my personal laptot which I use as my home server, where I have virtualbox with some VMs like a docker and owncloud with auto snapshoting to my Seagate PersonalCloud. This setup is proxied to the public world throught my Nginx proxy where I must set these headers for accessing WebDAV in my browser.

add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Methods' 'GET, HEAD, POST, PUT, OPTIONS, MOVE, DELETE, COPY, LOCK, UNLOCK'; add_header 'Access-Control-Allow-Headers' 'Authorization,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,X-Accept-Charset,X-Accept,origin,accept,if-match,destination, overwrite'; add_header 'Access-Control-Expose-Headers' 'ETag'; add_header 'Access-Control-Max-Age' 1728000;