Branch of Another Project
These projects are branches of other people software.
To facilitate navigating in this list, projects are categorized by their purpose, authorship, and current state. Each project entry lists the categories it pertains to. Clicking on a category name will bring a listing of all projects in that category.
Additionally, a list of related projects is provided where applicable. Each element in that list is a link to the corresponding project entry.
Clicking on a project's name will bring this project's entry as a separate page (a permalink).
Hovering your mouse over the version information of a project shows the list of changes introduced by that version.
Sort controls below allow you to order the list either lexicographically or by the most recent release date, in both directions.
Using the Search control, you can select projects by name. Shell-style globbing patterns (wildcards) are accepted.
(Return to the project listing)
apout
It is a modification of the PDP-11 emulator originally written by Warren Toomey, that allows to run binaries from the earliest UNIX distributions.
extrans
This is a modified versions of Romuald Texier’s eXtrans. It was used as the underlying mechanism for Ellinika and Runasimi at early stages of their development, before switching to xmltools.
pound
* Support for pcre and pcre2 rewritten The pcre2posix (or pcreposix) layer is no longer used. Instead, pound uses the native API of the corresponding library. This provides for additional speed-up and (in case of pcre2) avoids coredumps under high load. * Use of POSIX and Perl-compatible regular expressions In contrast to previous versions, both types of regular expressions can be used simultaneously in the configuration file. The flavour of the regex to use can be specified either individually with each request matching statement (such as URL, Header, etc.), or globally. To set it globally, use the RegexType statement. The type of regular expression set by it will be used in all matching statements that appear below that statement, unless they declare regex type explicitly. It remains in effect until next RegexType statement or end of file is encountered, whichever occurs first. For example, to use PCRE by default, add the following statement somewhere near the beginning of your pound.cfg file: RegexType pcre To change the default back to POSIX regexps, do RegexType posix Regular expression type can also be specified with each matching statement individually. For example, the -pcre option indicates that Perl-compatible regular expression is given as argument, e.g.: Host -pcre -icase "(?<!www\\.)example.org" Similarly, the -posix option indicates that POSIX extended regular expression is used. Use these options to override the default for a single statement. * New matching option: -contain The -contain option enables substring match. E.g. the following will match if URL contains the word "user" (case-insensitive): URL -contain -icase "user" * New configuration statement: LogTag Sets a string to tag syslog messages with. By default, the name used to start the program is assumed. * Bugfixes ** Fix infinite recursion on reporting an out of memory condition. ** Fix deadlock in session expiration handling. ** Fix RewriteLocation functionality.
Pound is a reverse proxy, load balancer and HTTPS front-end for Web servers. It was developed to enable distributing load among several Web-servers and to allow for a convenient SSL wrapper for those Web servers that do not offer it natively.
Pound was originally developed by Robert Segall at Apsis GmbH. I took over its development when Robert announced that he abandons it.