diff options
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | config.layout | 26 |
2 files changed, 28 insertions, 0 deletions
@@ -1,6 +1,8 @@ -*- coding: utf-8 -*- Changes with Apache 2.5.1 + *) Add a config layout for OpenWRT. [Graham Leggett] + *) mod_http2: Fixed rare cases where a h2 worker could deadlock the main connection. [Yann Ylavic, Stefan Eissing] diff --git a/config.layout b/config.layout index 100947789f..dd732dfc9c 100644 --- a/config.layout +++ b/config.layout @@ -409,3 +409,29 @@ logfiledir: ${localstatedir}/log/httpd proxycachedir: ${localstatedir}/cache/httpd </Layout> + +# OpenWRT layout +<Layout OpenWRT> + prefix: /usr + exec_prefix: ${prefix} + bindir: ${prefix}/bin + sbindir: ${prefix}/sbin + libdir: ${prefix}/lib/apache + libexecdir: ${prefix}/lib/apache/modules + installbuilddir: ${prefix}/lib/apache/build + mandir: ${prefix}/man + sysconfdir: /etc/apache + datadir: /usr/share + iconsdir: ${datadir}/icons + htdocsdir: ${datadir}/htdocs + manualdir: ${htdocsdir}/manual + cgidir: ${datadir}/cgi-bin + errordir: ${datadir}/error + includedir: ${prefix}/include/httpd + localstatedir: /var + runtimedir: ${localstatedir}/run + statedir: ${localstatedir}/lib/apache + logfiledir: ${localstatedir}/log + proxycachedir: ${localstatedir}/cache/apache +</Layout> + |