-
Notifications
You must be signed in to change notification settings - Fork 310
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
Do not list root directory #416
Comments
We will not support this feature. see #263 (comment) |
Maybe You should run two instances of |
Alright, thanks for the explanation in the linked issue. BTW, I appreciate that the application is kept simple and not all the desired functions are implemented in order to keep the application lean and clear.
Mh, I'll have to think about it. This requires one instance per directory that I want to share independently, right? |
Dufs path-prefix requires one instance per directory. If there are many directories, You can also put a reverse-proxy (nginx, trafik) in front of dufs. If the path is |
That's an excellent idea, thanks for the suggestion. |
Specific Demand
Is there a way to exclude the root directory from the directory listing? I want to share different directories with different groups of people without setting a password, but prevent them from accessing the files in another directory if they don't know the directory name.
My idea was that
/
is only listed by providing password. The other two directories are accessible to anyone who knows the link.With this configuration, however, both directories are still listed when unregistered users access
/
.Exclusion via
--hidden
does not seem to be possible either, as I cannot apply this to individual directories.--hidden /*/
does not work, and--hidden */
no longer shows any directories at all.Is there a way to get the behavior I want or is it simply not possible?
Implement SuggestionThe text was updated successfully, but these errors were encountered: