Overview
| Comment: | Updated documentation |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
303474c09a8a28699a147a787c08a9fb |
| User & Date: | rkeene on 2014-02-08 02:50:29 |
| Other Links: | manifest | tags |
Context
|
2014-02-08
| ||
| 03:04 | Updated to compile correctly with logging disabled check-in: 66d99492b4 user: rkeene tags: trunk | |
| 02:50 | Updated documentation check-in: 303474c09a user: rkeene tags: trunk | |
| 02:44 | Updated external links in manual check-in: 4ed7fcc2fd user: rkeene tags: trunk | |
Changes
Modified filed.1 from [c66cc2b562] to [368e134ee9].
| ︙ | ︙ | |||
26 27 28 29 30 31 32 | .SH DESCRIPTION .I FILED serves files over HTTP as minimally as possible. Only static files (i.e., files that never change or are replaced) are supported. .SH OPTIONS .TP .B -h (or --help) | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | .SH DESCRIPTION .I FILED serves files over HTTP as minimally as possible. Only static files (i.e., files that never change or are replaced) are supported. .SH OPTIONS .TP .B -h (or --help) Prints detailed usage information. .TP .B -d (or --daemon) Instructs .B filed to become a daemon after initializing the listening TCP socket and log files. |
| ︙ | ︙ |
Modified filed.c from [b4d256af0b] to [f3c505b766].
| ︙ | ︙ | |||
842 843 844 845 846 847 848 |
fprintf(output, " -l <file>, --log <file>\n");
fprintf(output, " -u <user>, --user <user>\n");
fprintf(output, " -r <directory>, --root <directory>\n");
if (long_help) {
fprintf(output, "\n");
fprintf(output, " Usage:\n");
| | | 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 |
fprintf(output, " -l <file>, --log <file>\n");
fprintf(output, " -u <user>, --user <user>\n");
fprintf(output, " -r <directory>, --root <directory>\n");
if (long_help) {
fprintf(output, "\n");
fprintf(output, " Usage:\n");
fprintf(output, " -h (or --help) prints this usage information.\n");
fprintf(output, "\n");
fprintf(output, " -d (or --daemon) instructs filed to become a daemon after initializing\n");
fprintf(output, " the listening TCP socket and log files.\n");
fprintf(output, "\n");
fprintf(output, " -b (or --bind) specifies the address to listen for incoming HTTP\n");
fprintf(output, " requests on. The default value is \"%s\".\n", BIND_ADDR);
fprintf(output, "\n");
|
| ︙ | ︙ |