Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in comment. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b0c540690380202239c5678387069d89 |
User & Date: | mistachkin 2019-08-07 21:59:31.376 |
Context
2019-08-14
| ||
16:54 | Merge the test dashboard development line into trunk. (check-in: ed6e0d08a7 user: drh tags: trunk) | |
2019-08-07
| ||
21:59 | Fix typo in comment. (check-in: b0c5406903 user: mistachkin tags: trunk) | |
2019-08-05
| ||
20:39 | Back out the previous change. We are instead going to modify the code to match the documentation. (check-in: e16ada80d6 user: drh tags: trunk) | |
Changes
Changes to misc/althttpd.c.
︙ | ︙ | |||
31 32 33 34 35 36 37 | ** corresponding host directory does not exist, then the ** "default.website" is used. If the HTTP_HOST header contains any ** charaters other than [a-zA-Z0-9_.,*~/] then a 403 error is ** generated. ** ** (3) Any file or directory whose name begins with "." or "-" is ignored, ** except for /.well-known/ at the top-level. The exception is for | | | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | ** corresponding host directory does not exist, then the ** "default.website" is used. If the HTTP_HOST header contains any ** charaters other than [a-zA-Z0-9_.,*~/] then a 403 error is ** generated. ** ** (3) Any file or directory whose name begins with "." or "-" is ignored, ** except for /.well-known/ at the top-level. The exception is for ** RFC-5785 to allow letsencrypt or certbot to generate a TLS cert ** using webroot. ** ** (4) Characters other than [0-9a-zA-Z,-./:_~] and any %HH characters ** escapes in the filename are all translated into "_". This is ** a defense against cross-site scripting attacks and other mischief. ** ** (5) Executable files are run as CGI. Files whose name ends with ".scgi" |
︙ | ︙ |