Commit Briefs

Omar Polo

rework the grammar so that ; is accepted after variables and options

See Codeberg issue #1.


Omar Polo

fix missing listen on warning

printed the wrong value for the hostname


Omar Polo

plug a leak

all other rules are freeing the value of `listen_addr'


Omar Polo

fix automatic guessing of `listen on'

default_host needs to be NULL for getaddrinfo(3) to listen on everything.


Omar Polo

implement fastcgi strip number


Omar Polo

add `log syslog facility' to use a different syslog(3) facility

Was requested ages ago by Karl Jeacle, now that there is some better support for configuring the logging there's no excuse to add this. It helps with filtering from syslog.d / syslog.conf.


Omar Polo

sort logopt



Omar Polo

typo


Omar Polo

allow to change the logging style; introduce some new ones

add `log style <style>'; The old default is called `legacy' now, a new default format is added called `condensed', and `common' and `combined' to mimick Apache httpd and nginx (respectively) are also added.



Omar Polo

fix a reduce/reduce conflict

location -> error and locopt -> fastcgi -> error both end up with a optnl that can be reduced to the empty string.



Omar Polo

revamp fastcgi configuration: make it per-location

this revamps the syntax in the configuration to better match httpd(8) (and in general be less weird) and to allow per-location fastcgi configurations. the bare `param' is now deprecated, but for compatibility it acts like `fastcgi param' would do now. Same story for `fastcgi <pathÂ>'.


Omar Polo

plug memleak