Skip to content

Commit

Permalink
Merge pull request #17 from lsst-epo/master
Browse files Browse the repository at this point in the history
Increase limits in `php.ini`
  • Loading branch information
ericdrosas87 authored Aug 28, 2024
2 parents 4151217 + c31b1bb commit 0427374
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions php.ini-production
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ expose_php = On
; Maximum execution time of each script, in seconds
; https://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
max_execution_time = 120
max_execution_time = 300

; Maximum amount of time each script may spend parsing request data. It's a good
; idea to limit this time on productions servers in order to eliminate unexpectedly
Expand All @@ -431,7 +431,7 @@ max_input_vars = 1500

; Maximum amount of memory a script may consume
; https://php.net/memory-limit
memory_limit = 512M
memory_limit = 2G

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
Expand Down Expand Up @@ -879,7 +879,7 @@ allow_url_include = Off

; Default timeout for socket based streams (seconds)
; https://php.net/default-socket-timeout
default_socket_timeout = 60
default_socket_timeout = 120

; If your scripts have to deal with files from Macintosh systems,
; or you are running on a Mac and need to deal with files from
Expand Down

0 comments on commit 0427374

Please sign in to comment.