Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit dc9a4cc

Browse files
author
DKravtsov
committed
updated php.ini and rabbitmq
1 parent fde4686 commit dc9a4cc

File tree

7 files changed

+86
-42
lines changed

7 files changed

+86
-42
lines changed

‎docker/dev/php.ini‎

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -519,11 +519,6 @@ display_startup_errors = On
519519
; https://php.net/log-errors
520520
log_errors = On
521521

522-
; Set maximum length of log_errors. In error_log information about the source is
523-
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
524-
; https://php.net/log-errors-max-len
525-
log_errors_max_len = 1024
526-
527522
; Do not log repeated messages. Repeated errors must occur in same file on same
528523
; line unless ignore_repeated_source is set true.
529524
; https://php.net/ignore-repeated-errors
@@ -1151,6 +1146,10 @@ mysqli.max_persistent = -1
11511146
; https://php.net/mysqli.allow_local_infile
11521147
;mysqli.allow_local_infile = On
11531148

1149+
; It allows the user to specify a folder where files that can be sent via LOAD DATA
1150+
; LOCAL can exist. It is ignored if mysqli.allow_local_infile is enabled.
1151+
;mysqli.local_infile_directory =
1152+
11541153
; Allow or prevent persistent links.
11551154
; https://php.net/mysqli.allow-persistent
11561155
mysqli.allow_persistent = On
@@ -1190,6 +1189,11 @@ mysqli.default_pw =
11901189
; Allow or prevent reconnect
11911190
mysqli.reconnect = Off
11921191

1192+
; If this option is enabled, closing a persistent connection will rollback
1193+
; any pending transactions of this connection, before it is put back
1194+
; into the persistent connection pool.
1195+
;mysqli.rollback_on_cached_plink = Off
1196+
11931197
[mysqlnd]
11941198
; Enable / Disable collection of general statistics by mysqlnd which can be
11951199
; used to tune and monitor MySQL operations.
@@ -1250,7 +1254,7 @@ mysqlnd.collect_memory_statistics = On
12501254
;oci8.ping_interval = 60
12511255

12521256
; Connection: Set this to a user chosen connection class to be used
1253-
; for all pooled server requests with Oracle 11g Database Resident
1257+
; for all pooled server requests with Oracle Database Resident
12541258
; Connection Pooling (DRCP). To use DRCP, this value should be set to
12551259
; the same string for all web servers running the same application,
12561260
; the database pool must be configured, and the connection string must
@@ -1267,11 +1271,18 @@ mysqlnd.collect_memory_statistics = On
12671271
; https://php.net/oci8.statement-cache-size
12681272
;oci8.statement_cache_size = 20
12691273

1270-
; Tuning: Enables statement prefetching and sets the default number of
1274+
; Tuning: Enables row prefetching and sets the default number of
12711275
; rows that will be fetched automatically after statement execution.
12721276
; https://php.net/oci8.default-prefetch
12731277
;oci8.default_prefetch = 100
12741278

1279+
; Tuning: Sets the amount of LOB data that is internally returned from
1280+
; Oracle Database when an Oracle LOB locator is initially retrieved as
1281+
; part of a query. Setting this can improve performance by reducing
1282+
; round-trips.
1283+
; https://php.net/oci8.prefetch-lob-size
1284+
; oci8.prefetch_lob_size = 0
1285+
12751286
; Compatibility. Using On means oci_close() will not close
12761287
; oci_connect() and oci_new_connect() connections.
12771288
; https://php.net/oci8.old-oci-close-semantics
@@ -1601,7 +1612,7 @@ zend.assertions = 1
16011612
; https://php.net/com.allow-dcom
16021613
;com.allow_dcom = true
16031614

1604-
; autoregister constants of a component's typlib on com_load()
1615+
; autoregister constants of a component's typelib on com_load()
16051616
; https://php.net/com.autoregister-typelib
16061617
;com.autoregister_typelib = true
16071618

@@ -1675,8 +1686,8 @@ zend.assertions = 1
16751686

16761687
; This directive specifies the regex pattern of content types for which mb_output_handler()
16771688
; is activated.
1678-
; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
1679-
;mbstring.http_output_conv_mimetype=
1689+
; Default: mbstring.http_output_conv_mimetypes=^(text/|application/xhtml\+xml)
1690+
;mbstring.http_output_conv_mimetypes=
16801691

16811692
; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
16821693
; to the pcre.recursion_limit for PCRE.

‎docker/prod/php.ini‎

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -521,11 +521,6 @@ display_startup_errors = Off
521521
; https://php.net/log-errors
522522
log_errors = On
523523

524-
; Set maximum length of log_errors. In error_log information about the source is
525-
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
526-
; https://php.net/log-errors-max-len
527-
log_errors_max_len = 1024
528-
529524
; Do not log repeated messages. Repeated errors must occur in same file on same
530525
; line unless ignore_repeated_source is set true.
531526
; https://php.net/ignore-repeated-errors
@@ -1153,6 +1148,10 @@ mysqli.max_persistent = -1
11531148
; https://php.net/mysqli.allow_local_infile
11541149
;mysqli.allow_local_infile = On
11551150

1151+
; It allows the user to specify a folder where files that can be sent via LOAD DATA
1152+
; LOCAL can exist. It is ignored if mysqli.allow_local_infile is enabled.
1153+
;mysqli.local_infile_directory =
1154+
11561155
; Allow or prevent persistent links.
11571156
; https://php.net/mysqli.allow-persistent
11581157
mysqli.allow_persistent = On
@@ -1192,6 +1191,11 @@ mysqli.default_pw =
11921191
; Allow or prevent reconnect
11931192
mysqli.reconnect = Off
11941193

1194+
; If this option is enabled, closing a persistent connection will rollback
1195+
; any pending transactions of this connection, before it is put back
1196+
; into the persistent connection pool.
1197+
;mysqli.rollback_on_cached_plink = Off
1198+
11951199
[mysqlnd]
11961200
; Enable / Disable collection of general statistics by mysqlnd which can be
11971201
; used to tune and monitor MySQL operations.
@@ -1252,7 +1256,7 @@ mysqlnd.collect_memory_statistics = Off
12521256
;oci8.ping_interval = 60
12531257

12541258
; Connection: Set this to a user chosen connection class to be used
1255-
; for all pooled server requests with Oracle 11g Database Resident
1259+
; for all pooled server requests with Oracle Database Resident
12561260
; Connection Pooling (DRCP). To use DRCP, this value should be set to
12571261
; the same string for all web servers running the same application,
12581262
; the database pool must be configured, and the connection string must
@@ -1269,11 +1273,18 @@ mysqlnd.collect_memory_statistics = Off
12691273
; https://php.net/oci8.statement-cache-size
12701274
;oci8.statement_cache_size = 20
12711275

1272-
; Tuning: Enables statement prefetching and sets the default number of
1276+
; Tuning: Enables row prefetching and sets the default number of
12731277
; rows that will be fetched automatically after statement execution.
12741278
; https://php.net/oci8.default-prefetch
12751279
;oci8.default_prefetch = 100
12761280

1281+
; Tuning: Sets the amount of LOB data that is internally returned from
1282+
; Oracle Database when an Oracle LOB locator is initially retrieved as
1283+
; part of a query. Setting this can improve performance by reducing
1284+
; round-trips.
1285+
; https://php.net/oci8.prefetch-lob-size
1286+
; oci8.prefetch_lob_size = 0
1287+
12771288
; Compatibility. Using On means oci_close() will not close
12781289
; oci_connect() and oci_new_connect() connections.
12791290
; https://php.net/oci8.old-oci-close-semantics
@@ -1603,7 +1614,7 @@ zend.assertions = -1
16031614
; https://php.net/com.allow-dcom
16041615
;com.allow_dcom = true
16051616

1606-
; autoregister constants of a component's typlib on com_load()
1617+
; autoregister constants of a component's typelib on com_load()
16071618
; https://php.net/com.autoregister-typelib
16081619
;com.autoregister_typelib = true
16091620

@@ -1677,8 +1688,8 @@ zend.assertions = -1
16771688

16781689
; This directive specifies the regex pattern of content types for which mb_output_handler()
16791690
; is activated.
1680-
; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
1681-
;mbstring.http_output_conv_mimetype=
1691+
; Default: mbstring.http_output_conv_mimetypes=^(text/|application/xhtml\+xml)
1692+
;mbstring.http_output_conv_mimetypes=
16821693

16831694
; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
16841695
; to the pcre.recursion_limit for PCRE.

‎docker/rabbitmq/Dockerfile‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rabbitmq:3.8-management-alpine
1+
FROM rabbitmq:3.9-management-alpine
22

3-
COPY rabbitmq_delayed_message_exchange-3.8.0.ez /opt/rabbitmq/plugins/
3+
COPY rabbitmq_delayed_message_exchange-3.9.0.ez /opt/rabbitmq/plugins/
44
RUN rabbitmq-plugins enable --offline rabbitmq_delayed_message_exchange
-42.4 KB
Binary file not shown.
35.5 KB
Binary file not shown.

‎docker/staging/php.ini‎

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -521,11 +521,6 @@ display_startup_errors = Off
521521
; https://php.net/log-errors
522522
log_errors = On
523523

524-
; Set maximum length of log_errors. In error_log information about the source is
525-
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
526-
; https://php.net/log-errors-max-len
527-
log_errors_max_len = 1024
528-
529524
; Do not log repeated messages. Repeated errors must occur in same file on same
530525
; line unless ignore_repeated_source is set true.
531526
; https://php.net/ignore-repeated-errors
@@ -1153,6 +1148,10 @@ mysqli.max_persistent = -1
11531148
; https://php.net/mysqli.allow_local_infile
11541149
;mysqli.allow_local_infile = On
11551150

1151+
; It allows the user to specify a folder where files that can be sent via LOAD DATA
1152+
; LOCAL can exist. It is ignored if mysqli.allow_local_infile is enabled.
1153+
;mysqli.local_infile_directory =
1154+
11561155
; Allow or prevent persistent links.
11571156
; https://php.net/mysqli.allow-persistent
11581157
mysqli.allow_persistent = On
@@ -1192,6 +1191,11 @@ mysqli.default_pw =
11921191
; Allow or prevent reconnect
11931192
mysqli.reconnect = Off
11941193

1194+
; If this option is enabled, closing a persistent connection will rollback
1195+
; any pending transactions of this connection, before it is put back
1196+
; into the persistent connection pool.
1197+
;mysqli.rollback_on_cached_plink = Off
1198+
11951199
[mysqlnd]
11961200
; Enable / Disable collection of general statistics by mysqlnd which can be
11971201
; used to tune and monitor MySQL operations.
@@ -1252,7 +1256,7 @@ mysqlnd.collect_memory_statistics = Off
12521256
;oci8.ping_interval = 60
12531257

12541258
; Connection: Set this to a user chosen connection class to be used
1255-
; for all pooled server requests with Oracle 11g Database Resident
1259+
; for all pooled server requests with Oracle Database Resident
12561260
; Connection Pooling (DRCP). To use DRCP, this value should be set to
12571261
; the same string for all web servers running the same application,
12581262
; the database pool must be configured, and the connection string must
@@ -1269,11 +1273,18 @@ mysqlnd.collect_memory_statistics = Off
12691273
; https://php.net/oci8.statement-cache-size
12701274
;oci8.statement_cache_size = 20
12711275

1272-
; Tuning: Enables statement prefetching and sets the default number of
1276+
; Tuning: Enables row prefetching and sets the default number of
12731277
; rows that will be fetched automatically after statement execution.
12741278
; https://php.net/oci8.default-prefetch
12751279
;oci8.default_prefetch = 100
12761280

1281+
; Tuning: Sets the amount of LOB data that is internally returned from
1282+
; Oracle Database when an Oracle LOB locator is initially retrieved as
1283+
; part of a query. Setting this can improve performance by reducing
1284+
; round-trips.
1285+
; https://php.net/oci8.prefetch-lob-size
1286+
; oci8.prefetch_lob_size = 0
1287+
12771288
; Compatibility. Using On means oci_close() will not close
12781289
; oci_connect() and oci_new_connect() connections.
12791290
; https://php.net/oci8.old-oci-close-semantics
@@ -1603,7 +1614,7 @@ zend.assertions = -1
16031614
; https://php.net/com.allow-dcom
16041615
;com.allow_dcom = true
16051616

1606-
; autoregister constants of a component's typlib on com_load()
1617+
; autoregister constants of a component's typelib on com_load()
16071618
; https://php.net/com.autoregister-typelib
16081619
;com.autoregister_typelib = true
16091620

@@ -1677,8 +1688,8 @@ zend.assertions = -1
16771688

16781689
; This directive specifies the regex pattern of content types for which mb_output_handler()
16791690
; is activated.
1680-
; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
1681-
;mbstring.http_output_conv_mimetype=
1691+
; Default: mbstring.http_output_conv_mimetypes=^(text/|application/xhtml\+xml)
1692+
;mbstring.http_output_conv_mimetypes=
16821693

16831694
; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
16841695
; to the pcre.recursion_limit for PCRE.

‎docker/test/php.ini‎

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -521,11 +521,6 @@ display_startup_errors = Off
521521
; https://php.net/log-errors
522522
log_errors = On
523523

524-
; Set maximum length of log_errors. In error_log information about the source is
525-
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
526-
; https://php.net/log-errors-max-len
527-
log_errors_max_len = 1024
528-
529524
; Do not log repeated messages. Repeated errors must occur in same file on same
530525
; line unless ignore_repeated_source is set true.
531526
; https://php.net/ignore-repeated-errors
@@ -1153,6 +1148,10 @@ mysqli.max_persistent = -1
11531148
; https://php.net/mysqli.allow_local_infile
11541149
;mysqli.allow_local_infile = On
11551150

1151+
; It allows the user to specify a folder where files that can be sent via LOAD DATA
1152+
; LOCAL can exist. It is ignored if mysqli.allow_local_infile is enabled.
1153+
;mysqli.local_infile_directory =
1154+
11561155
; Allow or prevent persistent links.
11571156
; https://php.net/mysqli.allow-persistent
11581157
mysqli.allow_persistent = On
@@ -1192,6 +1191,11 @@ mysqli.default_pw =
11921191
; Allow or prevent reconnect
11931192
mysqli.reconnect = Off
11941193

1194+
; If this option is enabled, closing a persistent connection will rollback
1195+
; any pending transactions of this connection, before it is put back
1196+
; into the persistent connection pool.
1197+
;mysqli.rollback_on_cached_plink = Off
1198+
11951199
[mysqlnd]
11961200
; Enable / Disable collection of general statistics by mysqlnd which can be
11971201
; used to tune and monitor MySQL operations.
@@ -1252,7 +1256,7 @@ mysqlnd.collect_memory_statistics = Off
12521256
;oci8.ping_interval = 60
12531257

12541258
; Connection: Set this to a user chosen connection class to be used
1255-
; for all pooled server requests with Oracle 11g Database Resident
1259+
; for all pooled server requests with Oracle Database Resident
12561260
; Connection Pooling (DRCP). To use DRCP, this value should be set to
12571261
; the same string for all web servers running the same application,
12581262
; the database pool must be configured, and the connection string must
@@ -1269,11 +1273,18 @@ mysqlnd.collect_memory_statistics = Off
12691273
; https://php.net/oci8.statement-cache-size
12701274
;oci8.statement_cache_size = 20
12711275

1272-
; Tuning: Enables statement prefetching and sets the default number of
1276+
; Tuning: Enables row prefetching and sets the default number of
12731277
; rows that will be fetched automatically after statement execution.
12741278
; https://php.net/oci8.default-prefetch
12751279
;oci8.default_prefetch = 100
12761280

1281+
; Tuning: Sets the amount of LOB data that is internally returned from
1282+
; Oracle Database when an Oracle LOB locator is initially retrieved as
1283+
; part of a query. Setting this can improve performance by reducing
1284+
; round-trips.
1285+
; https://php.net/oci8.prefetch-lob-size
1286+
; oci8.prefetch_lob_size = 0
1287+
12771288
; Compatibility. Using On means oci_close() will not close
12781289
; oci_connect() and oci_new_connect() connections.
12791290
; https://php.net/oci8.old-oci-close-semantics
@@ -1603,7 +1614,7 @@ zend.assertions = -1
16031614
; https://php.net/com.allow-dcom
16041615
;com.allow_dcom = true
16051616

1606-
; autoregister constants of a component's typlib on com_load()
1617+
; autoregister constants of a component's typelib on com_load()
16071618
; https://php.net/com.autoregister-typelib
16081619
;com.autoregister_typelib = true
16091620

@@ -1677,8 +1688,8 @@ zend.assertions = -1
16771688

16781689
; This directive specifies the regex pattern of content types for which mb_output_handler()
16791690
; is activated.
1680-
; Default: mbstring.http_output_conv_mimetype=^(text/|application/xhtml\+xml)
1681-
;mbstring.http_output_conv_mimetype=
1691+
; Default: mbstring.http_output_conv_mimetypes=^(text/|application/xhtml\+xml)
1692+
;mbstring.http_output_conv_mimetypes=
16821693

16831694
; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
16841695
; to the pcre.recursion_limit for PCRE.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /