| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | config/routing: fix maybe-uninitialized errors | William Casarin | 2020-11-02 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | Trivial fix to silence compilation errors on gcc 9.3.0: src/config.c: In function ‘conf_ini_handler’: src/config.c:154:23: error: ‘routing’ may be used uninitialized in this function [-Werror=maybe-uninitialized] 154 | enum gmnisrv_routing routing; | ^~~~~~~ src/config.c:197:18: error: ‘spec’ may be used uninitialized in this function [-Werror=maybe-uninitialized] 197 | route->path = strdup(spec); | ^~~~~~~~~~~~ Signed-off-by: William Casarin <jb55@jb55.com> | ||||
| * | Implement URL rewrites with regex capture groups | Drew DeVault | 2020-11-01 | 1 | -2/+9 |
| | | |||||
| * | Initial pass on regex routing support | Drew DeVault | 2020-10-29 | 1 | -2/+14 |
| | | | | | | | | | | All this does is parse the regexes out of the config file. I've vendored libregexp from Bellard's quickjs project, because it's reasonably small and self-contained, and POSIX regexes don't support captures. We're eventually going to want captures for URL rewrites, so this'll do for now. | ||||
| * | config: free more routing information on finish | Drew DeVault | 2020-10-28 | 1 | -0/+11 |
| | | |||||
| * | Initial support for CGI scripts | Drew DeVault | 2020-10-25 | 1 | -0/+1 |
| | | |||||
| * | Initial implementation of a routing table | Drew DeVault | 2020-10-25 | 1 | -14/+77 |
| | | |||||
| * | Remove [:tls] email directive | Drew DeVault | 2020-09-26 | 1 | -2/+0 |
| | | |||||
| * | Free up resources throughout | Drew DeVault | 2020-09-26 | 1 | -0/+1 |
| | | |||||
| * | Implement autoindex option | Drew DeVault | 2020-09-26 | 1 | -0/+20 |
| | | |||||
| * | Initialize sockets | Drew DeVault | 2020-09-23 | 1 | -0/+26 |
| | | |||||
| * | config: parse listen directives | Drew DeVault | 2020-09-23 | 1 | -3/+58 |
| | | |||||
| * | Initial config parser | Drew DeVault | 2020-09-23 | 1 | -0/+141 |
