Hello community,

here is the log from the commit of package apache2-mod_jk for openSUSE:Factory 
checked in at 2020-05-13 22:56:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/apache2-mod_jk (Old)
 and      /work/SRC/openSUSE:Factory/.apache2-mod_jk.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "apache2-mod_jk"

Wed May 13 22:56:33 2020 rev:37 rq:805247 version:1.2.48

Changes:
--------
--- /work/SRC/openSUSE:Factory/apache2-mod_jk/apache2-mod_jk.changes    
2020-02-18 10:38:04.528659274 +0100
+++ /work/SRC/openSUSE:Factory/.apache2-mod_jk.new.2738/apache2-mod_jk.changes  
2020-05-13 22:56:33.615064964 +0200
@@ -1,0 +2,23 @@
+Mon May 11 16:22:00 UTC 2020 - Pedro Monreal Gonzalez 
<[email protected]>
+
+- Fix Aliases to be compatible with the tomcat example URLs [bsc#1167896]
+
+-------------------------------------------------------------------
+Mon May 11 15:00:49 UTC 2020 - Pedro Monreal Gonzalez 
<[email protected]>
+
+- Changes for 1.2.47 and 1.2.48 updates:
+  * Add: Apache: Extend trace level logging of method entry/exit to
+    aid debugging of request mapping issues.
+  * Fix: Apache: Fix a bug in the normalization checks that prevented
+    file based requests, such as SSI file includes, from being processed.
+  * Fix: Apache: When using JkAutoAlias, ensure that files that include
+    spaces in their name are accessible.
+  * Update: Common: Update the documentation to reflect that the source
+    code for the Apache Tomcat Connectors has moved from Subversion to Git.
+  * Fix: Common: When using set_session_cookie, ensure that an updated session
+    cookie is issued if the load-balancer has to failover to a different 
worker.
+  * Update: Common: Update config.guess and config.sub from
+    https://git.savannah.gnu.org/git/config.git.
+  * Update: Common: Update release script for migration to git.
+
+-------------------------------------------------------------------

Old:
----
  tomcat-connectors-1.2.46-src.tar.gz
  tomcat-connectors-1.2.46-src.tar.gz.asc

New:
----
  tomcat-connectors-1.2.48-src.tar.gz
  tomcat-connectors-1.2.48-src.tar.gz.asc

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ apache2-mod_jk.spec ++++++
--- /var/tmp/diff_new_pack.8Q9VZT/_old  2020-05-13 22:56:34.539066767 +0200
+++ /var/tmp/diff_new_pack.8Q9VZT/_new  2020-05-13 22:56:34.543066775 +0200
@@ -18,16 +18,16 @@
 
 %define connectors_root    tomcat-connectors-%{version}-src
 Name:           apache2-mod_jk
-Version:        1.2.46
+Version:        1.2.48
 Release:        0
 Summary:        Connectors between Apache and Tomcat Servlet Container
 License:        Apache-2.0
 Group:          Productivity/Networking/Web/Frontends
-URL:            http://tomcat.apache.org/connectors-doc/
-Source0:        
http://www.apache.org/dist/tomcat/tomcat-connectors/jk/tomcat-connectors-%{version}-src.tar.gz
+URL:            https://tomcat.apache.org/connectors-doc/
+Source0:        
https://www.apache.org/dist/tomcat/tomcat-connectors/jk/tomcat-connectors-%{version}-src.tar.gz
 Source1:        jk.conf
 Source2:        README.SUSE
-Source3:        
http://www.apache.org/dist/tomcat/tomcat-connectors/jk/tomcat-connectors-%{version}-src.tar.gz.asc
+Source3:        
https://www.apache.org/dist/tomcat/tomcat-connectors/jk/tomcat-connectors-%{version}-src.tar.gz.asc
 BuildRequires:  apache-rpm-macros
 BuildRequires:  apache2-devel
 BuildRequires:  java-devel

++++++ jk.conf ++++++
--- /var/tmp/diff_new_pack.8Q9VZT/_old  2020-05-13 22:56:34.595066876 +0200
+++ /var/tmp/diff_new_pack.8Q9VZT/_new  2020-05-13 22:56:34.595066876 +0200
@@ -7,10 +7,16 @@
 
     # Log level to be used by mod_jk
     JkLogLevel error
+    # JkLogLevel debug
 
     # The following line makes apache aware of the location of
-    # the /servlets-examples context
-    Alias /servlets-examples "/srv/tomcat/webapps/examples/servlets"
+    # the /examples/servlets context
+    #
+    # WARNING! Contrary to the normal freedom in the choice of apache2 Aliases
+    # it is mandatory here that the Alias is formed from the exact
+    # tomcat path with the tomcat DocumentRoot prefix stripped!
+    #
+    Alias /examples/servlets "/srv/tomcat/webapps/examples/servlets"
     <Directory "/srv/tomcat/webapps/examples/servlets">
        Options Indexes FollowSymLinks
        <IfModule !mod_access_compat.c>
@@ -23,8 +29,8 @@
 
 
     # The following line makes apache aware of the location of
-    # the /jsp-examples context
-    Alias /jsp-examples "/srv/tomcat/webapps/examples/jsp"
+    # the /examples/jsp context
+    Alias /examples/jsp "/srv/tomcat/webapps/examples/jsp"
     <Directory "/srv/tomcat/webapps/examples/jsp">
        Options Indexes FollowSymLinks
        <IfModule !mod_access_compat.c>
@@ -36,12 +42,11 @@
     </Directory>
 
     # The following line mounts all JSP files and the /servlet/ uri to tomcat
-    JkMount /servlets-examples/servlet/* ajp13
-    JkMount /jsp-examples/*.jsp ajp13
+    JkMount /examples/servlets/servlet/* ajp13
+    JkMount /examples/jsp/*.jsp ajp13
 
     # The following line prohibits users from directly accessing WEB-INF
-    <Location "/jsp-examples/WEB-INF/">
-       AllowOverride None
+    <Location "/examples/jsp/WEB-INF/">
        <IfModule !mod_access_compat.c>
             Require all denied
        </IfModule>
@@ -49,8 +54,7 @@
            deny from all
        </IfModule>
     </Location>
-    <Location "/servlets-examples/WEB-INF/">
-       AllowOverride None
+    <Location "/examples/servlets/WEB-INF/">
        <IfModule !mod_access_compat.c>
             Require all denied
        </IfModule>

++++++ tomcat-connectors-1.2.46-src.tar.gz -> 
tomcat-connectors-1.2.48-src.tar.gz ++++++
++++ 41024 lines of diff (skipped)


Reply via email to