SHA256
1
0
forked from pool/phpPgAdmin

Accepting request 443181 from home:computersalat:devel:php

update phpPgAdmin.http, add support for apache 2.4, php7

OBS-URL: https://build.opensuse.org/request/show/443181
OBS-URL: https://build.opensuse.org/package/show/server:php:applications/phpPgAdmin?expand=0&rev=20
This commit is contained in:
Christian Wittmer 2016-12-02 13:13:56 +00:00 committed by Git OBS Bridge
parent 7df3762f9f
commit 3c75c631c3
3 changed files with 47 additions and 19 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Dec 2 11:24:39 UTC 2016 - chris@computersalat.de
- udpate phpPgAdmin.http
* add support for Apache 2.2/2.4
* add suppport for php7
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jan 6 18:26:46 UTC 2016 - chris@computersalat.de Wed Jan 6 18:26:46 UTC 2016 - chris@computersalat.de

View File

@ -1,23 +1,44 @@
<Directory @ap_docroot@/@name@> <Directory @ap_docroot@/@name@>
Options FollowSymLinks Options FollowSymLinks
AllowOverride None AllowOverride None
<IfModule mod_php5.c>
php_admin_flag register_globals off <IfModule mod_php5.c>
php_admin_flag magic_quotes_gpc off php_admin_flag register_globals off
php_admin_flag allow_url_include off php_admin_flag magic_quotes_gpc off
php_admin_flag allow_url_fopen off php_admin_flag allow_url_include off
php_admin_flag zend.ze1_compatibility_mode off php_admin_flag allow_url_fopen off
php_admin_flag safe_mode Off php_admin_flag zend.ze1_compatibility_mode off
php_admin_value open_basedir "@ap_docroot@/@name@:/var/lib/php5:/tmp:@docdir@/@name@:/etc/@name@" php_admin_flag safe_mode Off
</IfModule> php_admin_value open_basedir "@ap_docroot@/@name@:/var/lib/php5:/tmp:@docdir@/@name@:/etc/@name@"
</IfModule>
<IfModule mod_php7.c>
php_admin_flag register_globals off
php_admin_flag magic_quotes_gpc off
php_admin_flag allow_url_include off
php_admin_flag allow_url_fopen off
php_admin_flag zend.ze1_compatibility_mode off
php_admin_flag safe_mode Off
php_admin_value open_basedir "@ap_docroot@/@name@:/var/lib/php7:/tmp:@docdir@/@name@:/etc/@name@"
</IfModule>
</Directory> </Directory>
<Directory @ap_docroot@/@name@/libraries> <Directory @ap_docroot@/@name@/libraries>
<IfVersion >= 2.4>
Require all denied <IfVersion < 2.4>
</IfVersion> Order allow,deny
<IfVersion < 2.4> Deny from all
Order allow,deny </IfVersion>
Deny from all
</IfVersion> <IfVersion >= 2.4>
<IfModule !mod_access_compat.c>
Require all denied
</IfModule>
<IfModule mod_access_compat.c>
Order deny,allow
Deny from all
</IfModule>
</IfVersion>
</Directory> </Directory>

View File

@ -1,7 +1,7 @@
# #
# spec file for package phpPgAdmin # spec file for package phpPgAdmin
# #
# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed