查看nginx的configure参数:nginx -V ``` nginx version: nginx/1.16.0 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC) built with OpenSSL 1.0.2k-fips 26 Jan 2017 TLS SNI support enabled configure arguments: --prefix=/etc/nginx #Nginx安装的根路径,所有其它路径都要依赖该选项 --sbin-path=/usr/sbin/nginx #指定nginx二进制文件的路径,没指定的话 这个路径依赖--prefix选项 --modules-path=/usr/lib64/nginx/modules #指定第三方模块的存放路径 --conf-path=/etc/nginx/nginx.conf #指定配置文件存放位置 --error-log-path=/var/log/nginx/error.log #指定错误日志存放位置 --http-log-path=/var/log/nginx/access.log #设定access log路径 --pid-path=/var/run/nginx.pid #nginx master进程pid写入的文件位置,通常在var/run下 --lock-path=/var/run/nginx.lock #共享存储器互斥锁文件路径 --http-client-body-temp-path=/var/cache/nginx/client_temp #设定http客户端请求临时文件路径 --http-proxy-temp-path=/var/cache/nginx/proxy_temp #代理设置后,设置http proxy临时文件路径 --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp #设置http fastcgi临时文件路径 --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp #设定http scgi临时文件路径 --http-scgi-temp-path=/var/cache/nginx/scgi_temp #设定http scgi临时文件路径 --user=nginx #指定程序运行时的非特权用户 --group=nginx #指定程序运行时的非特权用户组 --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie' ```