SET(rel_sysconfdir "conf")
FILE(GLOB_RECURSE conffiles RELATIVE ${CMAKE_SOURCE_DIR}/docs/conf "docs/conf/*")
FOREACH(template ${conffiles})
- STRING(REPLACE ".conf.in" ".conf" conf ${template})
+ STRING(REPLACE ".conf.in" ".conf" conf "${template}")
FILE(READ "docs/conf/${template}" template_text)
IF(template MATCHES ".conf.in$")
# substitute @var@/@@var@@ in .conf.in
- STRING(REPLACE "@@" "@" template_text ${template_text})
+ STRING(REPLACE "@@" "@" template_text "${template_text}")
STRING(CONFIGURE "${template_text}" template_text @ONLY)
ENDIF()
FILE(WRITE ${CMAKE_BINARY_DIR}/conf/original/${conf} "${template_text}")
dnl Ensure that docs/conf is created.
test -d docs/conf||$mkdir_p docs/conf
-AC_CONFIG_FILES(docs/conf/httpd.conf docs/conf/extra/httpd-autoindex.conf docs/conf/extra/httpd-dav.conf docs/conf/extra/httpd-default.conf docs/conf/extra/httpd-info.conf docs/conf/extra/httpd-languages.conf docs/conf/extra/httpd-manual.conf docs/conf/extra/httpd-mpm.conf docs/conf/extra/httpd-multilang-errordoc.conf docs/conf/extra/httpd-policy.conf docs/conf/extra/httpd-ssl.conf docs/conf/extra/httpd-userdir.conf docs/conf/extra/httpd-vhosts.conf docs/conf/extra/proxy-html.conf include/ap_config_layout.h support/apxs support/apachectl support/dbmmanage support/envvars-std support/log_server_status support/logresolve.pl support/phf_abuse_log.cgi support/split-logfile build/rules.mk build/pkg/pkginfo build/config_vars.sh)
+AC_CONFIG_FILES(docs/conf/httpd.conf docs/conf/extra/httpd-autoindex.conf docs/conf/extra/httpd-dav.conf docs/conf/extra/httpd-default.conf docs/conf/extra/httpd-info.conf docs/conf/extra/httpd-languages.conf docs/conf/extra/httpd-manual.conf docs/conf/extra/httpd-mpm.conf docs/conf/extra/httpd-multilang-errordoc.conf docs/conf/extra/httpd-policy.conf docs/conf/extra/httpd-ssl.conf docs/conf/extra/httpd-userdir.conf docs/conf/extra/httpd-vhosts.conf docs/conf/extra/proxy-html.conf docs/conf/extra/httpd-macro.conf include/ap_config_layout.h support/apxs support/apachectl support/dbmmanage support/envvars-std support/log_server_status support/logresolve.pl support/phf_abuse_log.cgi support/split-logfile build/rules.mk build/pkg/pkginfo build/config_vars.sh)
AC_CONFIG_COMMANDS([default], [true], [APACHE_GEN_MAKEFILES])
AC_OUTPUT
-
#
# Load the module if not already present
<IfModule !mod_policy.c>
<Location />
SetOutputFilter POLICY_TYPE;POLICY_LENGTH;POLICY_KEEPALIVE;POLICY_VARY;POLICY_VALIDATION;POLICY_CONDITIONAL;POLICY_NOCACHE;POLICY_MAXAGE
- # content type must be present and valid, but can be anything<br />
- PolicyType enforce */*<br />
+ # content type must be present and valid, but can be anything
+ PolicyType enforce */*
- # reject if no explicitly declared content length<br />
- PolicyLength enforce<br />
+ # reject if no explicitly declared content length
+ PolicyLength enforce
- # covered by the policy length filter<br />
- PolicyKeepalive ignore<br />
+ # covered by the policy length filter
+ PolicyKeepalive ignore
- # reject if User-Agent appears within Vary headers<br />
- PolicyVary enforce User-Agent<br />
+ # reject if User-Agent appears within Vary headers
+ PolicyVary enforce User-Agent
- # we want to enforce validation<br />
- PolicyValidation enforce<br />
+ # we want to enforce validation
+ PolicyValidation enforce
- # non-functional conditional responses should be rejected<br />
- PolicyConditional enforce<br />
+ # non-functional conditional responses should be rejected
+ PolicyConditional enforce
- # no-cache responses should be rejected<br />
- PolicyNocache enforce<br />
+ # no-cache responses should be rejected
+ PolicyNocache enforce
- # maxage must be at least a day<br />
- PolicyMaxage enforce 86400<br />
+ # maxage must be at least a day
+ PolicyMaxage enforce 86400
- # request version can be anything<br />
- PolicyVersion ignore HTTP/1.1<br />
+ # request version can be anything
+ PolicyVersion ignore HTTP/1.1
# define documentation links
PolicyConditionalURL http://httpd.apache.org/docs/trunk/compliance.html#policyconditional
<Location /server-status>
PolicyFilter off
</Location>
-
-