博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx开启日志
阅读量:6154 次
发布时间:2019-06-21

本文共 623 字,大约阅读时间需要 2 分钟。

vim /usr/local/nginx/conf/nginx.conf

user nginx;
worker_processes 2;

error_log logs/error.log; (开启错误日志)

#error_log logs/error.log notice;
#error_log logs/error.log info;
pid logs/nginx.pid;

events {

worker_connections 10240;
}

http {

include 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  logs/access.log  main;(开启访问日志)sendfile        on;keepalive_timeout  65;

}

转载于:https://blog.51cto.com/zuoshou/2122326

你可能感兴趣的文章
jQuery.on() 函数详解
查看>>
谈缓存和Redis
查看>>
【转】百度地图api,根据多点注标坐标范围计算地图缩放级别zoom自适应地图
查看>>
用户调研(补)
查看>>
ExtJS之开篇:我来了
查看>>
☆1018
查看>>
oracle 去掉空格
查看>>
6.13心得
查看>>
Runtime类
查看>>
eclipse decompiler
查看>>
记一个搜索网盘资源的网站
查看>>
jdk1.7和jdk1.8的String的getByte方法的差异
查看>>
java父子进程通信
查看>>
Android ADB server didn't ACK * failed to start daemon * 简单有效的解决方案
查看>>
Olap学习笔记
查看>>
Codeforces Round #431 (Div. 1)
查看>>
如何进行数组去重
查看>>
将标题空格替换为 '_' , 并自动复制到剪切板上
查看>>
List Collections sort
查看>>
Mysql -- You can't specify target table 'address' for update in FROM clause
查看>>