当前位置: 首页 > news >正文

docker nginx滚动日志配置

将所有日志打印到控制台

nginx.conf

user  nginx;
worker_processes  auto;
# 日志打印控制台
error_log  /dev/stdout;
#error_log  /var/log/nginx/error.log notice;
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  off;# 日志打印控制台access_log  /dev/stdout;#access_log  /var/log/nginx/access.log  main;sendfile        on;#tcp_nopush     on;keepalive_timeout  65;gzip  on;include /etc/nginx/conf.d/*.conf;
}

default.conf

server {listen       20000;server_name  localhost;#access_log  /var/log/nginx/host.access.log  main;location /20001/ {proxy_pass http://192.168.2.5:20001/;proxy_http_version 1.1;proxy_set_header Host $http_host;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection upgrade;proxy_set_header Accept-Encoding gzip;}location /20002/ {proxy_pass http://192.168.2.5:20002/;proxy_http_version 1.1;proxy_set_header Host $http_host;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection upgrade;proxy_set_header Accept-Encoding gzip;}location /20003/ {proxy_pass http://192.168.2.5:20003/;proxy_http_version 1.1;proxy_set_header Host $http_host;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection upgrade;proxy_set_header Accept-Encoding gzip;}location /20005/ {proxy_pass http://192.168.2.5:20005/;proxy_http_version 1.1;proxy_set_header Host $http_host;proxy_set_header Upgrade $http_upgrade;proxy_set_header Connection upgrade;proxy_set_header Accept-Encoding gzip;}#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;}}

启动

它启动一个新的 Docker 容器,并设置每个日志文件的大小为10MB,最多保留3个日志文件。
还要和其他参数一起使用,如指定端口,配置文件映射等(run --rm -it -p 20000:20000 -v /root/app/tmp/nginx.conf:/etc/nginx/nginx.conf -v /root/app/tmp/default.conf:/etc/nginx/conf.d/default.conf nginx

docker run -d --log-opt max-size=10m --log-opt max-file=3 nginx
http://www.lryc.cn/news/276013.html

相关文章:

  • 大数据分析案例-基于LinearRegression回归算法构建房屋价格预测模型
  • React-hook-form-mui(一):基本使用
  • python总结-生成器与迭代器
  • MySQL如何从数据中截取所需要的字符串
  • 动态加载和动态链接的区别
  • js数组循环,当前循环完成后执行下次循环
  • 决策树(Decision Trees)
  • 湖南大学-计算机网路-2023期末考试【部分原题回忆】
  • LCD—液晶显示
  • 论正确初始化深度学习模型参数的重要性
  • ALSA学习(5)——ASoC架构中的Machine
  • LeetCode 0447.回旋镖的数量:哈希表
  • 容器相关笔记
  • cissp 第10章 : 物理安全要求
  • 聊一聊 .NET高级调试 内核模式堆泄露
  • 海外代理IP在游戏中有什么作用?
  • 高防ip适合防御网站和游戏类的攻击吗?
  • HTML5和JS实现明媚月色效果
  • Django5+DRF序列化
  • 什么是编译程序和解释程序
  • 文档审阅批注的合并和对比
  • 广义零样本学习综述的笔记
  • java每日一题——输出9x9乘法表(答案及编程思路)
  • Android 车联网——基础简介(一)
  • 自动驾驶货车编队行驶系统功能规范
  • javafx
  • 玩转贝启科技BQ3588C开源鸿蒙系统开发板 —— 编译构建及此过程中的踩坑填坑(3)
  • SQL ORDER BY 关键字
  • 多线程-生产者消费者模型
  • 解压命令之一 gzip