f4662a93cf
- Apache configuration compatible with both 2.2 and 2.4 - update to 4.4.12 (2015-07-20) - Saved chart image does not have a proper name or an extension - sf#4976 Timepicker CSS issues in Original theme - sf#4975 Move/Copy/Rename operations on Table/Db fail on Drizzle server - sf#4826 Two inline edit windows - sf#4979 Problem when import *.ods file - Add missing head tag - sf#4985 Column headers move when scrolling - use smaller xz compressed archive - update Apache configuration to be compatible with 2.4 OBS-URL: https://build.opensuse.org/request/show/317822 OBS-URL: https://build.opensuse.org/package/show/server:php:applications/phpMyAdmin?expand=0&rev=223
31 lines
1.0 KiB
HTTP
31 lines
1.0 KiB
HTTP
<Directory @ap_docroot@/@name@>
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
<IfModule mod_php5.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/php5:/tmp:@docdir@/@name@:/etc/@name@:/proc/meminfo:/proc/stat"
|
|
# customize suhosin
|
|
php_admin_value suhosin.post.max_array_index_length 256
|
|
php_admin_value suhosin.post.max_totalname_length 8192
|
|
php_admin_value suhosin.post.max_vars 2048
|
|
php_admin_value suhosin.request.max_array_index_length 256
|
|
php_admin_value suhosin.request.max_totalname_length 8192
|
|
php_admin_value suhosin.request.max_vars 2048
|
|
</IfModule>
|
|
</Directory>
|
|
<Directory @ap_docroot@/@name@/libraries>
|
|
<IfVersion >= 2.4>
|
|
Require all denied
|
|
</IfVersion>
|
|
<IfVersion < 2.4>
|
|
Order allow,deny
|
|
Deny from all
|
|
</IfVersion>
|
|
</Directory>
|
|
|