/[smecontribs]/rpms/smeserver-mod_maxminddb/contribs10/smeserver-mod_maxminddb-1.1.0-bz12052-httpd24.patch
ViewVC logotype

Annotation of /rpms/smeserver-mod_maxminddb/contribs10/smeserver-mod_maxminddb-1.1.0-bz12052-httpd24.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (hide annotations) (download)
Mon Jul 25 07:09:36 2022 UTC (21 months, 3 weeks ago) by jpp
Branch: MAIN
CVS Tags: smeserver-mod_maxminddb-1_1_0-14_el7_sme, smeserver-mod_maxminddb-1_1_0-13_el7_sme, HEAD
Changes since 1.2: +5 -1 lines
* Mon Jul 25 2022 Jean-Philippe Pialasse <tests@pialasse.com> 1.1.0-13.sme
- make compatible with httpd24 access  [SME: 12052]

1 jpp 1.1 diff -Nur --no-dereference smeserver-mod_maxminddb-1.1.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/79externalSSLAccessStringGeoip smeserver-mod_maxminddb-1.1.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/79externalSSLAccessStringGeoip
2     --- smeserver-mod_maxminddb-1.1.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/79externalSSLAccessStringGeoip 2022-07-24 01:10:54.985000000 -0400
3 jpp 1.2 +++ smeserver-mod_maxminddb-1.1.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/79externalSSLAccessStringGeoip 2022-07-25 00:58:53.699000000 -0400
4     @@ -1,3 +1,4 @@
5     +
6     {
7     #---------------------------------------------------------------------
8     # Grab ValidFromGeoIP access list property of httpd-admin
9     @@ -5,11 +6,12 @@
10     # this list, as well as local networks.
11     #---------------------------------------------------------------------
12    
13     - $OUT = '';
14     + $OUT = '# Mod_maxminddb variable definition';
15    
16     my $validFromGeoIP = ${'httpd-admin'}{'ValidFromGeoIP'};
17     - return unless defined $validFromGeoIP;
18     + return "#disabled\n" unless (defined $validFromGeoIP && ($modMaxminddb{'status'}||'disabled') eq 'enabled' );
19 jpp 1.1 $validFromGeoIP =~ s/,/|/g;
20 jpp 1.2 - $OUT .= " SetEnvIf MM_COUNTRY_CODE ^($validFromGeoIP) AllowCountries\n";
21 jpp 1.1 - $externalSSLAccess .= " env=AllowCountries";
22     -}
23 jpp 1.2 + $OUT .= "\nSetEnvIf MM_COUNTRY_CODE ^($validFromGeoIP) AllowCountries\n";
24     + # prior apache 2.4 you could combine ip and env by doing $externalSSLAccess .= ' env=AllowCountries';
25     + # now you should add "Require env AllowCountries" in Files, Directory or Location section
26 jpp 1.1 + }
27 jpp 1.2 diff -Nur --no-dereference smeserver-mod_maxminddb-1.1.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/98geoipallow smeserver-mod_maxminddb-1.1.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/98geoipallow
28     --- smeserver-mod_maxminddb-1.1.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/98geoipallow 1969-12-31 19:00:00.000000000 -0500
29     +++ smeserver-mod_maxminddb-1.1.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/VirtualHosts/98geoipallow 2022-07-25 00:58:53.941000000 -0400
30 jpp 1.3 @@ -0,0 +1,23 @@
31 jpp 1.2 +{
32     + $OUT =" # Mod_maxminddb\n";
33     + return " #disabled\n" unless ( ($modMaxminddb{'status'}||'disabled') eq 'enabled' || defined (${'httpd-admin'}{'ValidFromGeoIP'}) );
34     + $haveSSL = (exists ${modSSL}{status} and ${modSSL}{status} eq "enabled") ? 'yes' : 'no';
35     + if (($haveSSL eq 'yes') && ($port eq $httpsPort) ) {
36     + $OUT .=" <Location /server-manager>
37 jpp 1.3 + Require ip $localAccess $externalSSLAccess
38 jpp 1.2 + Require env AllowCountries
39     + </Location>\n" if (-d "/etc/e-smith/web/panels/manager/" && (${'httpd-admin'}{'GeoIPManager'} || 'enabled' ) eq 'enabled' );
40     + $OUT .=" <Location /server-common>
41 jpp 1.3 + Require ip $localAccess $externalSSLAccess
42 jpp 1.2 + Require env AllowCountries
43     + </Location>\n" if ( (${'httpd-admin'}{'GeoIPManager'} || 'enabled' ) eq 'enabled' || (${'httpd-admin'}{'GeoIPUser'} || 'enabled' ) eq 'enabled' || (${'httpd-admin'}{'GeoIPPassword'} || 'enabled' ) eq 'enabled') ;
44     + $OUT .=" <Location /user-manager>
45 jpp 1.3 + Require ip $localAccess $externalSSLAccess
46 jpp 1.2 + Require env AllowCountries
47     + </Location>\n" if (-d "/etc/e-smith/web/panels/user/" && (${'httpd-admin'}{'GeoIPUser'} || 'enabled' ) eq 'enabled' );
48     + $OUT .=" <Location /user-password>
49 jpp 1.3 + Require ip $localAccess $externalSSLAccess
50 jpp 1.2 + Require env AllowCountries
51     + </Location>\n" if (-d "/etc/e-smith/web/panels/password/" && (${'httpd-admin'}{'GeoIPPassword'} || 'enabled' ) eq 'enabled' );
52     + }
53     +}

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed