Skip to content

Commit bb870ab

Browse files
authored
Extend max query execution time to 1 hour (#206)
1 parent 0166b5b commit bb870ab

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

phpmyadmin/rootfs/etc/nginx/servers/ingress.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ server {
88

99
location ~ .php$ {
1010
fastcgi_pass 127.0.0.1:9001;
11-
fastcgi_read_timeout 900;
11+
fastcgi_read_timeout 3610;
1212
fastcgi_split_path_info ^(.+\.php)(/.+)$;
1313
fastcgi_index index.php;
1414
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

phpmyadmin/rootfs/etc/php81/conf.d/99-phpmyadmin.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[general]
22
allow_url_fopen = Off
3-
max_execution_time = 900
3+
max_execution_time = 3610
44
memory_limit=256M
55
opcache.enable=1
66
opcache.fast_shutdown=1

phpmyadmin/rootfs/etc/phpmyadmin/config.inc.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
$cfg['AllowThirdPartyFraming'] = true;
66
$cfg['CheckConfigurationPermissions'] = false;
7+
$cfg['ExecTimeLimit'] = 3600;
78
$cfg['SaveDir'] = '';
89
$cfg['TempDir'] = sys_get_temp_dir();
910
$cfg['UploadDir'] = '';

0 commit comments

Comments
 (0)