Hello community,

here is the log from the commit of package apache2-mod_jk for openSUSE:Factory 
checked in at 2015-07-20 11:20:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/apache2-mod_jk (Old)
 and      /work/SRC/openSUSE:Factory/.apache2-mod_jk.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "apache2-mod_jk"

Changes:
--------
--- /work/SRC/openSUSE:Factory/apache2-mod_jk/apache2-mod_jk.changes    
2015-06-10 09:16:29.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.apache2-mod_jk.new/apache2-mod_jk.changes       
2015-07-20 11:20:39.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 16 07:22:02 UTC 2015 - pgaj...@suse.com
+
+- Requries: %{apache_suse_maintenance_mmn}
+  This will pull this module to the update (in released distribution) 
+  when apache maintainer thinks it is good (due api/abi changes).
+
+-------------------------------------------------------------------
@@ -7,0 +15,5 @@
+
+-------------------------------------------------------------------
+Thu Jun  4 11:27:13 UTC 2015 - pgaj...@suse.com
+
+- access configuration conditional in jk.conf example

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

Other differences:
------------------
++++++ apache2-mod_jk.spec ++++++
--- /var/tmp/diff_new_pack.W8kiUA/_old  2015-07-20 11:20:41.000000000 +0200
+++ /var/tmp/diff_new_pack.W8kiUA/_new  2015-07-20 11:20:41.000000000 +0200
@@ -34,6 +34,7 @@
 BuildRequires:  java2-devel-packages
 BuildRequires:  pcre-devel
 Requires:       %{apache_mmn}
+Requires:       %{apache_suse_maintenance_mmn}
 Requires:       apache2
 Provides:       mod_jk = %{version}
 Provides:       mod_jk-ap20 = %{version}

++++++ jk.conf ++++++
--- /var/tmp/diff_new_pack.W8kiUA/_old  2015-07-20 11:20:41.000000000 +0200
+++ /var/tmp/diff_new_pack.W8kiUA/_new  2015-07-20 11:20:41.000000000 +0200
@@ -13,7 +13,12 @@
     Alias /servlets-examples "/srv/tomcat/webapps/examples/servlets"
     <Directory "/srv/tomcat/webapps/examples/servlets">
        Options Indexes FollowSymLinks
-       allow from all
+       <IfModule !mod_access_compat.c>
+            Require all granted
+       </IfModule>
+       <IfModule mod_access_compat.c>
+           allow from all
+       </IfModule>
     </Directory>
 
 
@@ -22,7 +27,12 @@
     Alias /jsp-examples "/srv/tomcat/webapps/examples/jsp"
     <Directory "/srv/tomcat/webapps/examples/jsp">
        Options Indexes FollowSymLinks
-       allow from all
+       <IfModule !mod_access_compat.c>
+            Require all granted
+       </IfModule>
+       <IfModule mod_access_compat.c>
+           allow from all
+       </IfModule>
     </Directory>
 
     # The following line mounts all JSP files and the /servlet/ uri to tomcat
@@ -32,11 +42,21 @@
     # The following line prohibits users from directly accessing WEB-INF
     <Location "/jsp-examples/WEB-INF/">
        AllowOverride None
-       deny from all
+       <IfModule !mod_access_compat.c>
+            Require all denied
+       </IfModule>
+       <IfModule mod_access_compat.c>
+           deny from all
+       </IfModule>
     </Location>
     <Location "/servlets-examples/WEB-INF/">
        AllowOverride None
-       deny from all
+       <IfModule !mod_access_compat.c>
+            Require all denied
+       </IfModule>
+       <IfModule mod_access_compat.c>
+           deny from all
+       </IfModule>
     </Location>
 
 


Reply via email to