@mritzmann
And if I am logged in, I should be able to access the file, yes? Then perhaps I am using the wrong path?
@devnull
But the error was not displayed in earlier versions, so was it wrong then or is it wrong now (AllowOverride All
is included in my apache2.conf
)?
The support of my webhoster said that the data directory is outside of webroot, I used their oneclick installer and assume that they configured it well.
Moving the data directory retroactively seems not possible without root.
I am not sure if I understand webroot correctly:
webroot
anddocument root
are the same, yes?- webroot is defined in
apache2.conf
and there might be multiple webroot entries (e.g. for subdomains), yes? - nextcloud data directory is literally
/foo/bar/nextcloud/data/
or is it/foo/bar/nextcloud/data/<username>/files/
? - if apache2.conf contains
DocumentRoot "/foo/bar"
that means that/foo/bar/nextcloud/data/
is in webroot and should be moved e.g. to/foo/
, yes? - if apache2.conf contains
DocumentRoot /foo/bar/nextcloud
in addition toDocumentRoot "/foo/bar"
that does not change the fact that/foo/bar/nextcloud/data/
is in webroot, yes?