lnmp开放环境中,有各种配置文件,conf结尾的,d结尾的,ini结尾的等等,了解这些配置文件各自的用途,对我们深入理解其工作方式和排查问题至关重要。
php7
PHP7配置文件路径
一般为
/etc/php7。该目录下会有两个配置文件: php.ini 和php-fpm.conf ,以及一个文件夹 php-fpm.d(包含www.conf文件)。
php.ini是php运行核心配置文件
######避免PHP信息暴露在http头中
expose_php = Off
######避免暴露php调用mysql的错误信息
display_errors = Off
######在关闭display_errors后开启PHP错误日志(路径在php-fpm.conf中配置)
log_errors = On
######设置PHP的扩展库路径
extension_dir = "/usr/local/php7/lib/php/extensions/no-debug-non-zts-20141001/"
######设置PHP的opcache和mysql动态库
zend_extension=opcache.so
extension=mysqli.so
extension=pdo_mysql.so
######设置PHP的时区
date.timezone = PRC
######开启opcache
[opcache]
; Determines if Zend OPCache is enabled
opcache.enable=1
######设置PHP脚本允许访问的目录(需要根据实际情况配置)
;open_basedir = /usr/share/nginx/html;
php-fpm.conf是 php-fpm 进程服务的配置文件
######设置错误日志的路径
error_log = /var/log/php-fpm/error.log
######引入www.conf文件中的配置
include=/usr/local/php7/etc/php-fpm.d/*.conf
www.conf这是 php-fpm 进程服务的扩展配置文件:(php-fpm.d目录下)
######设置用户和用户组
user = nginx
group = nginx
######根据nginx.conf中的配置fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;设置PHP监听
; listen = 127.0.0.1:9000 #####不建议使用
listen = /var/run/php-fpm/php-fpm.sock
######开启慢日志
slowlog = /var/log/php-fpm/$pool-slow.log
request_slowlog_timeout = 10s
######设置php的session目录(所属用户和用户组都是nginx)
php_value[session.save_handler] = files
php_value[session.save_path] = /var/lib/php/session
nginx
nginx配置文件路径
一般为
/etc/nginx。该目录下会有一个配置文件nginx.conf,以及一个文件夹conf.d(包含default.conf文件)。
nginx.conf是配置文件,包括一些通用的配置,并引入 default.conf文件
user nginx; ##user 设置nginx服务的系统使用用户
worker_processes 1; ##worker_processes 工作进程数,一般和cpu核数保持一致
error_log /var/log/nginx/error.log warn; ##error_log nginx的错误日志 【warn】日志等级
pid /var/run/nginx.pid; ##pid nginx服务启动时候的pid
events {
worker_connections 1024; ##worker_connections 每个进程允许最大连接数,越多越好,可以调到65535,一般一万个左右
##use 工作进程数,设置内核模型
}
http {
include /etc/nginx/mime.types; ##设置http协议的Content-Type与扩展名对应关系
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
##日志格式 【main】格式名称
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main; ##日志 【main】 引用的格式
sendfile on;
#tcp_nopush on;
keepalive_timeout 65; ##超时时间
#gzip on;
include /etc/nginx/conf.d/*.conf; ##这里会引入conf.d文件夹下的.conf文件
}
default.conf是扩展配置文件(位于conf.d目录下)
server {
listen 80;
listen [::]:80;
server_name localhost;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
对应的关系图!
部分内容参考:https://www.cnblogs.com/kenshinobiy/p/7119346.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/134006.html