Update php.ini and remove the leading blank line from the nginx mime.types
This commit is contained in:
parent
f2081c1c56
commit
add8abba95
2 changed files with 54 additions and 69 deletions
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
types {
|
types {
|
||||||
text/html html htm shtml;
|
text/html html htm shtml;
|
||||||
text/css css;
|
text/css css;
|
||||||
|
|
122
php/php.ini
122
php/php.ini
|
@ -294,7 +294,7 @@ implicit_flush = Off
|
||||||
; callback-function.
|
; callback-function.
|
||||||
unserialize_callback_func =
|
unserialize_callback_func =
|
||||||
|
|
||||||
; When floats & doubles are serialized store serialize_precision significant
|
; When floats & doubles are serialized, store serialize_precision significant
|
||||||
; digits after the floating point. The default value ensures that when floats
|
; digits after the floating point. The default value ensures that when floats
|
||||||
; are decoded with unserialize, the data will remain the same.
|
; are decoded with unserialize, the data will remain the same.
|
||||||
; The value is also used for json_encode when encoding double values.
|
; The value is also used for json_encode when encoding double values.
|
||||||
|
@ -525,11 +525,12 @@ report_memleaks = On
|
||||||
; Store the last error/warning message in $php_errormsg (boolean). Setting this value
|
; Store the last error/warning message in $php_errormsg (boolean). Setting this value
|
||||||
; to On can assist in debugging and is appropriate for development servers. It should
|
; to On can assist in debugging and is appropriate for development servers. It should
|
||||||
; however be disabled on production servers.
|
; however be disabled on production servers.
|
||||||
|
; This directive is DEPRECATED.
|
||||||
; Default Value: Off
|
; Default Value: Off
|
||||||
; Development Value: On
|
; Development Value: Off
|
||||||
; Production Value: Off
|
; Production Value: Off
|
||||||
; http://php.net/track-errors
|
; http://php.net/track-errors
|
||||||
track_errors = Off
|
;track_errors = Off
|
||||||
|
|
||||||
; Turn off normal error reporting and emit XML-RPC error XML
|
; Turn off normal error reporting and emit XML-RPC error XML
|
||||||
; http://php.net/xmlrpc-errors
|
; http://php.net/xmlrpc-errors
|
||||||
|
@ -866,62 +867,62 @@ default_socket_timeout = 60
|
||||||
; If you wish to have an extension loaded automatically, use the following
|
; If you wish to have an extension loaded automatically, use the following
|
||||||
; syntax:
|
; syntax:
|
||||||
;
|
;
|
||||||
; extension=modulename.extension
|
; extension=modulename
|
||||||
;
|
;
|
||||||
; For example, on Windows:
|
; For example:
|
||||||
;
|
;
|
||||||
; extension=msql.dll
|
; extension=mysqli
|
||||||
;
|
;
|
||||||
; ... or under UNIX:
|
; When the extension library to load is not located in the default extension
|
||||||
|
; directory, You may specify an absolute path to the library file:
|
||||||
;
|
;
|
||||||
; extension=msql.so
|
; extension=/path/to/extension/mysqli.so
|
||||||
;
|
;
|
||||||
; ... or with a path:
|
; Note : The syntax used in previous PHP versions ('extension=<ext>.so' and
|
||||||
|
; 'extension='php_<ext>.dll') is supported for legacy reasons and may be
|
||||||
|
; deprecated in a future PHP major version. So, when it is possible, please
|
||||||
|
; move to the new ('extension=<ext>) syntax.
|
||||||
;
|
;
|
||||||
; extension=/path/to/extension/msql.so
|
;extension=bcmath
|
||||||
;
|
extension=bz2
|
||||||
; If you only provide the name of the extension, PHP will look for it in its
|
;extension=calendar
|
||||||
; default extension directory.
|
extension=curl
|
||||||
;
|
;extension=dba
|
||||||
;extension=bcmath.so
|
;extension=enchant
|
||||||
extension=bz2.so
|
;extension=exif
|
||||||
;extension=calendar.so
|
;extension=ftp
|
||||||
extension=curl.so
|
extension=gd
|
||||||
;extension=dba.so
|
;extension=gettext
|
||||||
;extension=enchant.so
|
extension=gmp
|
||||||
;extension=exif.so
|
;extension=iconv
|
||||||
;extension=ftp.so
|
extension=imap
|
||||||
extension=gd.so
|
;extension=intl
|
||||||
;extension=gettext.so
|
;extension=sodium
|
||||||
extension=gmp.so
|
;extension=ldap
|
||||||
;extension=iconv.so
|
extension=memcached
|
||||||
extension=imap.so
|
extension=mcrypt
|
||||||
;extension=intl.so
|
extension=mysqli
|
||||||
;extension=ldap.so
|
;extension=odbc
|
||||||
extension=memcached.so
|
;zend_extension=opcache
|
||||||
extension=mcrypt.so
|
;extension=pdo_dblib
|
||||||
extension=mysqli.so
|
extension=pdo_mysql
|
||||||
;extension=odbc.so
|
;extension=pdo_odbc
|
||||||
;zend_extension=opcache.so
|
;extension=pdo_pgsql
|
||||||
;extension=pdo_dblib.so
|
;extension=pdo_sqlite
|
||||||
extension=pdo_mysql.so
|
;extension=pgsql
|
||||||
;extension=pdo_odbc.so
|
;extension=pspell
|
||||||
;extension=pdo_pgsql.so
|
;extension=shmop
|
||||||
;extension=pdo_sqlite.so
|
;extension=snmp
|
||||||
;extension=pgsql.so
|
;extension=soap
|
||||||
;extension=pspell.so
|
;extension=sockets
|
||||||
;extension=shmop.so
|
;extension=sqlite3
|
||||||
;extension=snmp.so
|
;extension=sysvmsg
|
||||||
;extension=soap.so
|
;extension=sysvsem
|
||||||
;extension=sockets.so
|
;extension=sysvshm
|
||||||
;extension=sqlite3.so
|
;extension=tidy
|
||||||
;extension=sysvmsg.so
|
;extension=xmlrpc
|
||||||
;extension=sysvsem.so
|
;extension=xsl
|
||||||
;extension=sysvshm.so
|
extension=zip
|
||||||
;extension=tidy.so
|
|
||||||
;extension=xmlrpc.so
|
|
||||||
;extension=xsl.so
|
|
||||||
extension=zip.so
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;
|
||||||
; Module Settings ;
|
; Module Settings ;
|
||||||
|
@ -1055,10 +1056,6 @@ mail.add_x_header = On
|
||||||
; Log mail to syslog (Event Log on Windows).
|
; Log mail to syslog (Event Log on Windows).
|
||||||
;mail.log = syslog
|
;mail.log = syslog
|
||||||
|
|
||||||
[SQL]
|
|
||||||
; http://php.net/sql.safe-mode
|
|
||||||
sql.safe_mode = Off
|
|
||||||
|
|
||||||
[ODBC]
|
[ODBC]
|
||||||
; http://php.net/odbc.default-db
|
; http://php.net/odbc.default-db
|
||||||
;odbc.default_db = Not yet implemented
|
;odbc.default_db = Not yet implemented
|
||||||
|
@ -1761,17 +1758,6 @@ soap.wsdl_cache_limit = 5
|
||||||
; Sets the maximum number of open links or -1 for unlimited.
|
; Sets the maximum number of open links or -1 for unlimited.
|
||||||
ldap.max_links = -1
|
ldap.max_links = -1
|
||||||
|
|
||||||
[mcrypt]
|
|
||||||
; For more information about mcrypt settings see http://php.net/mcrypt-module-open
|
|
||||||
|
|
||||||
; Directory where to load mcrypt algorithms
|
|
||||||
; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
|
|
||||||
;mcrypt.algorithms_dir=
|
|
||||||
|
|
||||||
; Directory where to load mcrypt modes
|
|
||||||
; Default: Compiled in into libmcrypt (usually /usr/local/lib/libmcrypt)
|
|
||||||
;mcrypt.modes_dir=
|
|
||||||
|
|
||||||
[dba]
|
[dba]
|
||||||
;dba.default_handler=
|
;dba.default_handler=
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue