Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions 7.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ The following environment variables set their equivalent property value in the p
* **PHP_MEMORY_LIMIT**
* Memory Limit
* Default: 128M
* **SENDMAIL_PATH**
* Where the sendmail program can be found
* Default: /usr/sbin/sendmail -t -i
* **SESSION_NAME**
* Name of the session
* Default: PHPSESSID
Expand Down
2 changes: 1 addition & 1 deletion 7.0/root/opt/app-root/etc/php.ini.template
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ pdo_mysql.default_socket=
[mail function]
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = /usr/sbin/sendmail -t -i
sendmail_path = ${SENDMAIL_PATH}

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
Expand Down
1 change: 1 addition & 0 deletions 7.0/s2i/bin/run
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export TRACK_ERRORS=${TRACK_ERRORS:-OFF}
export HTML_ERRORS=${HTML_ERRORS:-ON}
export INCLUDE_PATH=${INCLUDE_PATH:-.:/opt/app-root/src:${PHP_DEFAULT_INCLUDE_PATH}}
export PHP_MEMORY_LIMIT=${PHP_MEMORY_LIMIT:-128M}
export SENDMAIL_PATH=${SENDMAIL_PATH:/usr/sbin/sendmail -t -i}
export SESSION_NAME=${SESSION_NAME:-PHPSESSID}
export SESSION_HANDLER=${SESSION_HANDLER:-files}
export SESSION_PATH=${SESSION_PATH:-/tmp/sessions}
Expand Down
3 changes: 3 additions & 0 deletions 7.1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ The following environment variables set their equivalent property value in the p
* **PHP_MEMORY_LIMIT**
* Memory Limit
* Default: 128M
* **SENDMAIL_PATH**
* Where the sendmail program can be found
* Default: /usr/sbin/sendmail -t -i
* **SESSION_NAME**
* Name of the session
* Default: PHPSESSID
Expand Down
1 change: 1 addition & 0 deletions 7.1/s2i/bin/run
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export TRACK_ERRORS=${TRACK_ERRORS:-OFF}
export HTML_ERRORS=${HTML_ERRORS:-ON}
export INCLUDE_PATH=${INCLUDE_PATH:-.:/opt/app-root/src:${PHP_DEFAULT_INCLUDE_PATH}}
export PHP_MEMORY_LIMIT=${PHP_MEMORY_LIMIT:-128M}
export SENDMAIL_PATH=${SENDMAIL_PATH:/usr/sbin/sendmail -t -i}
export SESSION_NAME=${SESSION_NAME:-PHPSESSID}
export SESSION_HANDLER=${SESSION_HANDLER:-files}
export SESSION_PATH=${SESSION_PATH:-/tmp/sessions}
Expand Down
3 changes: 3 additions & 0 deletions 7.2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ The following environment variables set their equivalent property value in the p
* **PHP_MEMORY_LIMIT**
* Memory Limit
* Default: 128M
* **SENDMAIL_PATH**
* Where the sendmail program can be found
* Default: /usr/sbin/sendmail -t -i
* **SESSION_NAME**
* Name of the session
* Default: PHPSESSID
Expand Down
2 changes: 1 addition & 1 deletion 7.2/root/opt/app-root/etc/php.ini.template
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ pdo_mysql.default_socket=
[mail function]
; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
; http://php.net/sendmail-path
sendmail_path = /usr/sbin/sendmail -t -i
sendmail_path = ${SENDMAIL_PATH}

; Force the addition of the specified parameters to be passed as extra parameters
; to the sendmail binary. These parameters will always replace the value of
Expand Down
1 change: 1 addition & 0 deletions 7.2/s2i/bin/run
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export TRACK_ERRORS=${TRACK_ERRORS:-OFF}
export HTML_ERRORS=${HTML_ERRORS:-ON}
export INCLUDE_PATH=${INCLUDE_PATH:-.:/opt/app-root/src:${PHP_DEFAULT_INCLUDE_PATH}}
export PHP_MEMORY_LIMIT=${PHP_MEMORY_LIMIT:-128M}
export SENDMAIL_PATH=${SENDMAIL_PATH:/usr/sbin/sendmail -t -i}
export SESSION_NAME=${SESSION_NAME:-PHPSESSID}
export SESSION_HANDLER=${SESSION_HANDLER:-files}
export SESSION_PATH=${SESSION_PATH:-/tmp/sessions}
Expand Down