-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for remoteStorage #12686
Comments
this was supported in the past. unfortunately no one maintained this feature so it broke and was removed. feel free to contribute to add it again |
Thanks for the reply, @karlitschek! Unfortunately I only barely made it trough the introductory course on Java programming at the university, so I'm afraid I can only help by pointing out what others should do ;) |
There is actually a remoteStorage app in the appstore: https://apps.owncloud.com/content/show.php?content=164178 If you look at the description though you will see it’s not a particularly good idea though. We had a bunch of experimentation and discussion (like owncloud-archive/apps#1260 ) and it turns out that it’s just a bit too complicated to add remoteStorage to ownCloud. cc @michielbdejong @skddc @kaeff for info, in case the situation has changed. |
And if someone is interested, you can track work on CORS in ownCloud at #10415 |
Yep! |
Not really, if it's added to core by core devs. It's just not feasible as an add-on. |
@skddc the second and third limitation from owncloud-archive/apps#1260 (comment) would still apply. |
I don't think so, at least not for long. The 304 issue was fixed in Apache long ago (not sure if it's in stable now, though). And you can run it on the same port, with a different domain, no? |
Uh, interesting:
https://issues.apache.org/bugzilla/show_bug.cgi?id=51223 (Mixed it up with https://issues.apache.org/bugzilla/show_bug.cgi?id=45341) |
Requiring two domain names and two TLS certs (and thus either TLS or two IPv4 addresses) is not a really attractive alternative to running on two ports. Re Mark Nottingham's recent comment on that Apache ticket, I could not reproduce his findings, will comment there. |
I'm not sure what you're saying. If you can run reStore on the same server, then you can also implement it in OwnCloud and have a second Apache vhost. There's no difference just because you're running a different backend process. |
If you don't have a wildcard cert, or aren't ok with using a self-signed one, or not just get 2 (costs about 20 USD) normal ones, then that problem will be solved in 2015 by https://letsencrypt.org btw. |
I mean, it would change ownCloud from an easily hostable lamp application to an application that requires multiple vhosts. |
That's not very complicated, though. Also, it could be an optional thing. |
It’s still complicated enough. And it doesn’t really provide much value unless the actual ownCloud data would be exposed (Contacts, Files etc). Otherwise you’re better off just hosting reStore. |
It does provide a lot of value if you can use the same user accounts, because otherwise you have to manage users in 2 separate systems. Exposing OwnCloud's own data, that is currently stored in a proprietary format, would be icing on the cake in my view. |
(Btw, I'm just commenting on what I consider weak arguments, I'm actually rather indifferent to having RS in OC or not. ;)) |
remoteStorage is an open protocol for per-user storage. I think it would help out all Free software and decentralized file storage/personal cloud systems if ownCloud would integrate support for it into its core, not just leave it to those who know enough to find and use a plugin.
Check out all the interesting features: http://remotestorage.io/
The text was updated successfully, but these errors were encountered: