CentOS 7.6 初始 Nginx 配置文件示例
以下是一个基本的 CentOS 7.6 的初始 nginx.conf 文件:
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] '"$request"'
'$status $body_bytes_sent '"$http_referer"'
'"$http_user_agent"' '"$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
gzip on;
gzip_disable 'msie6';
include /etc/nginx/conf.d/*.conf;
}
该文件配置了 nginx 的基本运行参数,定义了 http 协议的一些设置和全局变量。还引用了 /etc/nginx/conf.d/ 目录下的所有 .conf 文件,以便加载服务器的所有虚拟主机配置。这个初始 nginx.conf 文件提供了一个良好的起点来配置你的 nginx 服务器。
原文地址: https://www.cveoy.top/t/topic/mudH 著作权归作者所有。请勿转载和采集!