Write the Code. Change the World.

10月 16

服务器时间久了,有可能忘记曾经编译安装的 nginx 和 php 的配置。但是想知道,怎么办呢。

操作一波

nginx

nginx -V

# 输出
nginx version: nginx/1.16.1
built by gcc 8.3.1 20190507 (Red Hat 8.3.1-4) (GCC)
built with OpenSSL 1.1.1f  31 Mar 2020
TLS SNI support enabled
configure arguments: --user=nginx --group=nginx --prefix=/alidata/service/nginx --pid-path=/alidata/service/nginx/run/nginx.pid --with-http_stub_status_module --with-threads --with-file-aio --with-pcre-jit --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-http_sub_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_realip_module --with-http_addition_module --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-stream_realip_module --with-http_slice_module --with-pcre --with-openssl=/usr/local/src/base/1-openssl/openssl-1.1.1f --with-openssl-opt=enable-tls1_3 --add-module=/opt/ngx_brotli/ --add-module=/usr/local/src/nginx/headers-more-nginx-module-0.33


php

php -i |grep configure

# 输出
Configure Command =>  './configure'  '--prefix=/alidata/service/php' '--with-config-file-path=/alidata/service/php/etc' '--with-config-file-scan-dir=/alidata/service/php/etc/php.d' '--with-fpm-user=nginx' '--with-fpm-group=nginx' '--with-curl' '--with-gettext' '--with-iconv-dir' '--with-kerberos' '--with-libdir=lib64' '--with-mysqli' '--with-openssl' '--with-external-pcre' '--with-pdo-mysql' '--with-pdo-sqlite' '--with-pear' '--with-xmlrpc' '--with-xsl' '--with-zlib' '--with-bz2' '--with-mhash' '--enable-bcmath' '--with-libxml' '--enable-inline-optimization' '--enable-mbregex' '--enable-mbstring' '--enable-opcache' '--enable-pcntl' '--enable-shmop' '--enable-soap' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-xml' '--with-zip' '--enable-fpm' '--enable-gd' '--with-jpeg=/usr/local/lib/jpeg' '--with-freetype=/usr/local/lib/freetype' 'PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig/'

去掉 grep ,你会看到更多 php 相关的信息。通常我们找 php.ini 的文件位置也是这个弄的。就是 php -i | grep php.ini

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注