-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Add per user home directories (#143)
- Loading branch information
Showing
4 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,11 @@ [email protected] | |
# Make sure that these directories exist, with write permissions for your server. | ||
# USE ABSOLUTE PATHS for better predictability | ||
WEBDAV_TMP_DIR='/tmp' | ||
WEBDAV_PUBLIC_DIR='/webdav' | ||
WEBDAV_PUBLIC_DIR='/webdav/public' | ||
# By default, home directories are disabled totally (env var set to an empty string). | ||
# If needed, it is recommended to use a folder that is NOT a child of the public dir, | ||
# such as /webdav/homes for instance, so that users cannot access other users' homes. | ||
WEBDAV_HOMES_DIR= | ||
|
||
# Logging path | ||
# By default, it will log in the standard Symfony directory: var/log/prod.log (for production) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters