Last change
on this file since 65 was 65, checked in by yakumo.izuru, 21 months ago |
M i m a s a m a ! ! !
Signed-off-by: Izuru Yakumo <yakumo.izuru@…>
|
File size:
1.1 KB
|
Rev | Line | |
---|
[65] | 1 | # TCP or unix Socket to listen on.
|
---|
| 2 | # When unix sockets are used, the content will be served over FastCGI.
|
---|
| 3 | #listen = /var/run/marisa-fcgi.sock
|
---|
| 4 | listen = 127.0.0.1:9000
|
---|
| 5 |
|
---|
| 6 | # Base to use when constructing URI to files uploaded.
|
---|
| 7 | # The full URI must be specified, in the form SCHEME://HOST[:PORT]
|
---|
| 8 | baseuri = http://127.0.0.1:9000
|
---|
| 9 |
|
---|
| 10 | # Drop privilege to the user and group specified.
|
---|
| 11 | # When only the user is specified, the default group of the user will
|
---|
| 12 | # be used.
|
---|
| 13 | #user = www
|
---|
| 14 | #group = daemon
|
---|
| 15 |
|
---|
| 16 | # Change the root directory to the following directory.
|
---|
| 17 | # When a chroot is set, all path must be given according to the chroot.
|
---|
| 18 | # Note: the configuration file is read before chrooting.
|
---|
| 19 | #chroot = /var/www
|
---|
| 20 |
|
---|
| 21 | # Path to the different path used by the server. Must take into account
|
---|
| 22 | # the chroot if set.
|
---|
| 23 | rootdir = static
|
---|
| 24 | tmplpath = templates
|
---|
| 25 | filepath = files
|
---|
| 26 | metapath = meta
|
---|
| 27 |
|
---|
| 28 | # URI context that files will be served on
|
---|
| 29 | filectx = /f/
|
---|
| 30 |
|
---|
| 31 | # Maximum per-file upload size (in bytes)
|
---|
| 32 | maxsize = 536870912 # 512Mib
|
---|
| 33 |
|
---|
| 34 | # Default expiration time (in seconds). An expiration time of 0 seconds
|
---|
| 35 | # means no expiration.
|
---|
| 36 | expiry = 86400 # 24 hours
|
---|
Note:
See
TracBrowser
for help on using the repository browser.