Last active
April 12, 2017 05:53
-
-
Save rikioy/a11ed03957a754e8410e39961bd32a35 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ./configure \ | |
| --prefix=/usr/local/php56 \ | |
| --sysconfdir=/usr/local/php56/etc \ | |
| --with-config-file-scan-dir=/usr/local/php56/etc \ | |
| --enable-fpm \ | |
| --with-fpm-user=www-data \ | |
| --with-fpm-group=www-data \ | |
| --enable-mbstring \ | |
| --enable-sockets \ | |
| --enable-pdo \ | |
| --enable-mysqlnd \ | |
| --with-mysql=mysqlnd \ | |
| --with-mysqli=mysqlnd \ | |
| --with-pdo-mysql=mysqlnd \ | |
| --enable-sysvshm \ | |
| --enable-shmop \ | |
| --with-jpeg-dir=/usr \ | |
| --with-freetype-dir=/usr \ | |
| --with-png-dir=/usr \ | |
| --with-zlib-dir=/usr \ | |
| --with-iconv \ | |
| --with-gd \ | |
| --with-openssl \ | |
| --enable-zip \ | |
| --enable-bcmath \ | |
| --enable-pcntl \ | |
| --with-curl \ | |
| --with-mysql-sock=/var/run/mysqld/mysqld.sock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment