Overview
Comment: | Added note about log files |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d6e6e6e9c75c57c6b6540d821c9abb0e |
User & Date: | rkeene on 2014-02-11 16:55:59 |
Other Links: | manifest | tags |
Context
2014-02-12
| ||
01:35 | Filed 1.4 check-in: 54ff5cc0ff user: rkeene tags: trunk, 1.4 | |
2014-02-11
| ||
16:55 | Added note about log files check-in: d6e6e6e9c7 user: rkeene tags: trunk | |
16:50 | Updated to support logging to processes in addition to files check-in: 541136d097 user: rkeene tags: trunk | |
Changes
Modified README from [39436c7686] to [15c37ea3f2].
︙ | ︙ | |||
72 73 74 75 76 77 78 | type1 type1_extension1 type1_extension2... type2 type2_extension1 type2_extension2... ... However it may not be desirable to include this mapping, or it may be desirable to use your own mapping rather than the default one. This can be done by specifying the MIMETYPES macro to "make". If no mapping is desired, "/dev/null" may be specified. | > > > > > > > > > > | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | type1 type1_extension1 type1_extension2... type2 type2_extension1 type2_extension2... ... However it may not be desirable to include this mapping, or it may be desirable to use your own mapping rather than the default one. This can be done by specifying the MIMETYPES macro to "make". If no mapping is desired, "/dev/null" may be specified. Log Files --------- Because "filed" relies on chroot(2) and setuid(2), log files cannot reliably be re-opened. If you need log rotation a second process, which can close and re-open log files, must be used. Any process may be used for writing logs to but if the process does not support log rotation it will not provide that benefit. For example, if you wish to write logs to syslogd(8) you can use logger(1), such as: # ./filed --root /www --user nobody --log '|logger -t filed' --daemon |