rpms/mythweb/devel mythweb.conf,1.1,1.2 mythweb.spec,1.5,1.6

Richard Shaw hobbes1069 at rpmfusion.org
Fri Jan 11 19:13:59 CET 2013


Author: hobbes1069

Update of /cvs/free/rpms/mythweb/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3202

Modified Files:
	mythweb.conf mythweb.spec 
Log Message:
* Fri Jan 11 2013 Richard Shaw <hobbes1069 at gmail.com> - 0.26.0-3
- Update mythweb config to work with apache 2.4.



Index: mythweb.conf
===================================================================
RCS file: /cvs/free/rpms/mythweb/devel/mythweb.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mythweb.conf	5 Jul 2012 16:19:07 -0000	1.1
+++ mythweb.conf	11 Jan 2013 18:13:59 -0000	1.2
@@ -14,6 +14,13 @@
 Alias /mythweb "/usr/share/mythweb"
 <Directory "/usr/share/mythweb">
 
+    <IfModule mod_authz_core.c>
+        # Apache 2.4
+        <RequireAll>
+                Require all granted
+        </RequireAll>
+    </IfModule>
+
     ############################################################################
     # I *strongly* urge you to turn on authentication for MythWeb.  It is disabled
     # by default because it requires you to set up your own password file.  Please
@@ -201,7 +208,13 @@
 </Directory>
 
 <Directory "/usr/share/mythweb/data">
-    Options -All +FollowSymLinks +IncludesNoExec
+    <IfModule !mod_authz_core.c>
+        Options -All +FollowSymLinks +IncludesNoExec
+    </IfModule>
+    <IfModule mod_authz_core.c>
+        # Apache 2.4
+        Options +FollowSymLinks +IncludesNoExec
+    </IfModule>
 </Directory>
 
 # You will probably also want to uncomment the following rules, which


Index: mythweb.spec
===================================================================
RCS file: /cvs/free/rpms/mythweb/devel/mythweb.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mythweb.spec	24 Dec 2012 19:21:49 -0000	1.5
+++ mythweb.spec	11 Jan 2013 18:13:59 -0000	1.6
@@ -9,7 +9,7 @@
 Group:          Applications/Multimedia
 
 Version:        0.26.0
-Release:        2%{?dist}
+Release:        3%{?dist}
 
 License:        GPLv2 and LGPLv2 and MIT
 
@@ -79,6 +79,9 @@
 
 
 %changelog
+* Fri Jan 11 2013 Richard Shaw <hobbes1069 at gmail.com> - 0.26.0-3
+- Update mythweb config to work with apache 2.4.
+
 * Sat Dec 08 2012 Richard Shaw <hobbes1069 at gmail.com> - 0.26.0-2
 - Update to latest upstream release.
 


More information about the rpmfusion-commits mailing list