This repository was archived by the owner on Jan 29, 2021. It is now read-only.
File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
-
3
2
/* vim: set expandtab sw=4 ts=4 sts=4: */
3
+
4
4
/**
5
5
* phpMyAdmin sample configuration, you can use it as base for
6
6
* manual configuration. For easier setup you can use setup/.
65
65
$ cfg ['Servers ' ][$ i ]['password ' ] = getenv ('PMA_PASSWORD ' );
66
66
$ cfg ['Servers ' ][$ i ]['hide_db ' ] = '^(information_schema|performance_schema|mysql|phpmyadmin)$ ' ;
67
67
68
- // Augmenter upload
69
- ini_set ('post_max_size ' , '200M ' );
70
- ini_set ('upload_max_filesize ' , '200M ' );
71
-
72
68
/* Storage database and tables */
73
69
// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
74
70
// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
Original file line number Diff line number Diff line change
1
+ file_uploads = On
2
+ memory_limit = 200M
3
+ upload_max_filesize = 200M
4
+ post_max_size = 200M
5
+ max_execution_time = 600
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ services:
27
27
- 80
28
28
volumes :
29
29
- ./config/docker/phpmyadmin/config.inc.php:/etc/phpmyadmin/config.user.inc.php
30
+ - ./config/docker/phpmyadmin/uploads.ini:/usr/local/etc/php/conf.d/uploads.ini
30
31
depends_on :
31
32
- db
32
33
links :
You can’t perform that action at this time.
0 commit comments