Skip to content

Commit

Permalink
Extend max query execution time to 1 hour
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed Jan 7, 2024
1 parent 0166b5b commit abbab62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phpmyadmin/rootfs/etc/nginx/servers/ingress.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ server {

location ~ .php$ {
fastcgi_pass 127.0.0.1:9001;
fastcgi_read_timeout 900;
fastcgi_read_timeout 3610;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
Expand Down
2 changes: 1 addition & 1 deletion phpmyadmin/rootfs/etc/php81/conf.d/99-phpmyadmin.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[general]
allow_url_fopen = Off
max_execution_time = 900
max_execution_time = 3610
memory_limit=256M
opcache.enable=1
opcache.fast_shutdown=1
Expand Down
1 change: 1 addition & 0 deletions phpmyadmin/rootfs/etc/phpmyadmin/config.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

$cfg['AllowThirdPartyFraming'] = true;
$cfg['CheckConfigurationPermissions'] = false;
$cfg['ExecTimeLimit'] = 3600;
$cfg['SaveDir'] = '';
$cfg['TempDir'] = sys_get_temp_dir();
$cfg['UploadDir'] = '';
Expand Down

0 comments on commit abbab62

Please sign in to comment.