Differences From Artifact [ab5fdbfc94]:
- File www/server/index.html — part of check-in [3e55ddf754] at 2019-08-19 04:57:25 on branch server-docs — Added www/server/windows/none.md server setup article (user: wyoung size: 12676)
To Artifact [ada9a8a7d7]:
- File www/server/index.html — part of check-in [94763aed7c] at 2019-08-19 09:10:19 on branch server-docs — Added www/server/debian/service.md, demonstrating systemd configuration of Fossil for the first time in the official docs, both as a user serivce and in socket activation mode as a system-level service. (user: wyoung size: 12711)
| ︙ | ︙ | |||
196 197 198 199 200 201 202 |
<td class="doc"><a href="any/none.md">✅</a></td>
<td class="doc"><a href="any/inetd.md">✅</a></td>
<td class="doc"><a href="any/stunnel.md">✅</a></td>
<td class="doc"><a href="any/cgi.md">✅</a></td>
<td class="doc"><a href="any/scgi.md">✅</a></td>
<td class="doc"><a href="any/althttpd.md">✅</a></td>
<td class="doc"><a href="debian/nginx.md">✅</a></td>
| | | 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
<td class="doc"><a href="any/none.md">✅</a></td>
<td class="doc"><a href="any/inetd.md">✅</a></td>
<td class="doc"><a href="any/stunnel.md">✅</a></td>
<td class="doc"><a href="any/cgi.md">✅</a></td>
<td class="doc"><a href="any/scgi.md">✅</a></td>
<td class="doc"><a href="any/althttpd.md">✅</a></td>
<td class="doc"><a href="debian/nginx.md">✅</a></td>
<td class="doc"><a href="debian/service.md">✅</a></td>
</tr>
<tr>
<th class="host">Windows</th>
<td class="doc"><a href="windows/none.md">✅</a></td>
<td class="doc">❌</td>
<td class="doc"><a href="windows/stunnel.md">✅</a></td>
|
| ︙ | ︙ | |||
254 255 256 257 258 259 260 |
const YES = 1; // host-specific doc provided
const IFA = 2; // inherit doc from "any"
const NO = 3; // method invalid or undocumented for this host OS
const methods = [
"none", "inetd", "stunnel", "CGI", "SCGI", "althttpd", "proxy", "service"
];
const matrix = {
| | | | | 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 |
const YES = 1; // host-specific doc provided
const IFA = 2; // inherit doc from "any"
const NO = 3; // method invalid or undocumented for this host OS
const methods = [
"none", "inetd", "stunnel", "CGI", "SCGI", "althttpd", "proxy", "service"
];
const matrix = {
"any OS": [ YES, YES, YES, YES, YES, YES, NO, NO ],
"Debian or Ubuntu": [ IFA, IFA, IFA, IFA, IFA, IFA, "nginx", YES ],
"Windows": [ YES, NO, YES, YES, NO, NO, "IIS", NO ],
}
const osNames = Object.keys(matrix).sort((e) => {
return e.toLowerCase()
}).map((longName, i) => {
var shortName = longName.toLowerCase().split(' ')[0];
return [ longName, shortName ];
});
|
| ︙ | ︙ |