]> granicus.if.org Git - apache/commitdiff
Patch PR 62567. Fix by Michal Karm Babacek <michal.babacek gmail.com>
authorJim Jagielski <jim@apache.org>
Thu, 9 Aug 2018 11:30:10 +0000 (11:30 +0000)
committerJim Jagielski <jim@apache.org>
Thu, 9 Aug 2018 11:30:10 +0000 (11:30 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1837717 13f79535-47bb-0310-9956-ffa450edef68

CMakeLists.txt
configure.in
docs/conf/extra/httpd-policy.conf.in
docs/conf/httpd.conf.in

index 3da3fcb53b783ec3fa324489777be3feee356c28..e630d112d0faf4b35cd8ac8e1c4ff3fbb0dc8f1a 100644 (file)
@@ -977,11 +977,11 @@ SET(rel_runtimedir      "logs")
 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}")
index 0eac9e0d6e147f44ae5754e189d83cf95c267472..22b9d596e8073e6cab62a413e7b650fdf7a99405 100644 (file)
@@ -1029,7 +1029,7 @@ AC_SUBST(ap_make_delimiter)
 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
 
index 966c82a20c44f8c6239b12f70ea54f7207e2f1ed..ff28d28c0da6830d80942d8654c35d85d12b2bc6 100644 (file)
@@ -1,4 +1,3 @@
-
 #
 # 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
@@ -57,5 +56,3 @@
 <Location /server-status>
   PolicyFilter off
 </Location>
-
-
index b793a79e00de117ceba63871dbdb1cfcc0616cbd..4e0418c4b9529a074597d1f66eda48390ff08b07 100644 (file)
@@ -405,7 +405,7 @@ LogLevel warn
 #Include @rel_sysconfdir@/extra/httpd-policy.conf
 
 # Configuration macros
-#Included @rel_sysconfdir@/extra/httpd-macro.conf
+#Include @rel_sysconfdir@/extra/httpd-macro.conf
 
 # Configure mod_proxy_html to understand HTML4/XHTML1
 <IfModule proxy_html_module>