Nginx初始化的配置文件nginx.conf
温馨提示:
本文最后更新于 2016年12月16日,已超过 2,897 天没有更新。若文章内的图片失效(无法正常加载),请留言反馈或直接联系我。
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
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;
keepalive_timeout 65;
#gzip on;
include /etc/nginx/conf.d/*.conf;
}
记录下,以防以后出错了可以还原
正文到此结束
- 本文标签: Linux Nginx
- 本文链接: https://zhyd.me/article/20
- 版权声明: 本文由张亚东原创发布,转载请遵循《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权