mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-09 11:42:57 +00:00

Former-commit-id: 6d6e53497fc247b8cbe7827c97dcec563c83362f [formerly 13a5cd7a387a9d3301bbdb698369f9b477a6529c] [formerly 481e62b24902620f53e306b3a39117688f3aaf82 [formerly 8121e0929c42f7c9cb28cde961c9ab83b7aa07bb]] Former-commit-id: 1d59990f2fb8055160cc697a8d0c27021862ad08 [formerly 9ce6f33c80b0a2648cad609b4db4f95ac1aab1fa] Former-commit-id: c411b9439e96757c9c89f7b1962cacd9a4d59648
165 lines
6.1 KiB
Markdown
165 lines
6.1 KiB
Markdown
# filemanager - a caddy plugin
|
|
|
|
[](https://travis-ci.org/hacdias/caddy-filemanager)
|
|
[](https://forum.caddyserver.com)
|
|
[](https://goreportcard.com/report/hacdias/caddy-filemanager)
|
|
|
|
filemanager provides WebDAV features and a file managing interface within the specified directory and it can be used to upload, delete, preview, rename and edit your files within that directory.
|
|
|
|
It is extremely important for security reasons to cover the path of filemanager with some kind of authentication. You can use, for example, [`basicauth`](https://caddyserver.com/docs/basicauth) directive.
|
|
|
|
## Get Started
|
|
|
|
To start using this plugin you just need to go to the [download Caddy page](https://caddyserver.com/download) and choose `filemanager` in the directives section. For further information on how Caddy works refer to [its documentation](https://caddyserver.com/docs).
|
|
|
|
If you want to build it from source, consult our [developers section](#developers).
|
|
|
|
## Syntax
|
|
|
|
```
|
|
filemanager [baseurl] {
|
|
show directory
|
|
webdav [path]
|
|
styles filepath
|
|
allow_new [true|false]
|
|
allow_edit [true|false]
|
|
allow_commands [true|false]
|
|
allow_command command
|
|
block_command command
|
|
before_save command
|
|
after_save command
|
|
allow [url|dotfiles]
|
|
allow_r regex
|
|
block [url|dotfiles]
|
|
block_r regex
|
|
}
|
|
```
|
|
|
|
All of the options above are optional.
|
|
|
|
+ **baseurl** is the URL where you will access the File Manager interface. Defaults to `/`.
|
|
+ **show** is the path, relative or absolute, to the directory you want to browse in. Defaults to `./`.
|
|
+ **webdav** is the path that will be appended to baseurl in which the [WebDAV](https://en.wikipedia.org/wiki/WebDAV) will be accessible. Defaults to `/webdav`.
|
|
+ **styles** is the relative or absolute path to the stylesheet file. This file doesn't need to be accessible from the web.
|
|
+ **allow_new** is the permission to create new files and directories. Defaults to `true`.
|
|
+ **allow_edit** is the permission to edit, rename and delete files or directories. Defaults to `true`.
|
|
+ **allow_commands** is the permission to execute commands. Defaults to `true`.
|
|
+ **allow_command** and **block_command** gives, or denies, permission to execute a certain command through the admin interface. By default `git`, `svn` and `hg` are enabled.
|
|
+ **before_save** and **after_save** allow you to set a custom command to be executed before saving and after saving a file. The placeholder `{path}` can be used and it will be replaced by the file path.
|
|
+ **allow** and **block** can be used to allow or deny the access to specific files or directories using their URL. You can use the magic word `dotfiles` to allow or block the access to dot-files. The blocked files won't show in the admin interface. By default, `block dotfiles` is activated.
|
|
+ **allow_r** and **block_r** and variations of the previous options but you are able to use regular expressions with them. These regular expressions are used to match the URL, **not** the internal file path.
|
|
|
|
|
|
So, by **default** we have:
|
|
|
|
```
|
|
filemanager / {
|
|
show ./
|
|
webdav /webdav
|
|
allow_new true
|
|
allow_edit true
|
|
allow_commands true
|
|
allow_command git
|
|
allow_command svn
|
|
allow_command hg
|
|
block dotfiles
|
|
}
|
|
```
|
|
|
|
As already mentioned, this extension should be used with [`basicauth`](https://caddyserver.com/docs/basicauth). If you do that, you will also be able to set permissions for different users using the following syntax:
|
|
|
|
```
|
|
filemanager {
|
|
# You set the global configurations here and
|
|
# all the users will inherit them.
|
|
user1:
|
|
# Here you can set specific settings for the 'user1'.
|
|
# They will override the global ones for this specific user.
|
|
}
|
|
```
|
|
|
|
## Examples
|
|
|
|
Show the directory where Caddy is being executed at the root of the domain:
|
|
|
|
```
|
|
filemanager
|
|
```
|
|
|
|
Use only WebDAV:
|
|
|
|
```
|
|
filemanager {
|
|
webdav /
|
|
}
|
|
```
|
|
|
|
Show the content of `foo` at the root of the domain:
|
|
|
|
```
|
|
filemanager {
|
|
show foo/
|
|
}
|
|
```
|
|
|
|
Show the directory where Caddy is being executed at `/filemanager`:
|
|
|
|
```
|
|
filemanager /filemanager
|
|
```
|
|
|
|
Show the content of `foo` at `/bar`:
|
|
|
|
```
|
|
filemanager /bar{
|
|
show foo/
|
|
}
|
|
```
|
|
|
|
Now, a bit more complicated example. You have three users: an administrator, a manager and an editor. The administrator can do everything and has access to the commands `rm` and `mv` because he is a geeky. The manager, doesn't have access to commands, but can create and edit files. The editor can **only** edit files. He can't even create new ones, because he will only edit the files after the manager creates them for him. Both the editor and the manager won't have access to the financial folder. We would have:
|
|
|
|
```
|
|
basicauth /admin admin pass
|
|
basicauth /admin manager pass
|
|
basicauth /admin editor pass
|
|
|
|
filemanager /admin {
|
|
show ./
|
|
allow_commands false
|
|
admin:
|
|
allow_commands true
|
|
allow_command rm
|
|
allow_command mv
|
|
allow dotfiles
|
|
manager:
|
|
block /admin/financial
|
|
editor:
|
|
allow_new false
|
|
block /admin/financial
|
|
}
|
|
```
|
|
|
|
## Developers
|
|
|
|
If you want to build Caddy from source with this plugin, you should take the following steps:
|
|
|
|
1. Download the Caddy source code (`go get github.com/mholt/caddy/caddy`)
|
|
2. Download the File Manager source code (`go get github.com/hacdias/caddy-filemanager`).
|
|
3. Navigate to the directory where File Manager's code is.
|
|
4. Run `go generate`. Otherwise, you will get an `undefined: Asset` error.
|
|
5. Navigate to the directory where Caddy's source code is and open the file `caddy/caddymain/run.go`.
|
|
6. Add the line `_ github.com/hacdias/caddy-filemanager` to the imports section.
|
|
|
|
Now you only need to build or install Caddy and you're good to go.
|
|
|
|
**Pre-commit Git Hook**
|
|
|
|
```
|
|
go generate
|
|
git add -A
|
|
```
|
|
|
|
### To edit CSS, JS and HTML
|
|
|
|
(In construction)
|