2015.12.18 nginx优化

回复 收藏
本帖最后由 乐橙306 于 2016-4-29 17:08 编辑

参考文档
优化nginx
http://blog.jobbole.com/51861/

2016-01-26 21:09 举报
已邀请:
0

balich

赞同来自:

谢谢分享,学习了!
0

乐橙306

赞同来自:

  1. user www;
  2. pid /var/run/nginx.pid;
  3. worker_processes auto;
  4. worker_rlimit_nofile 100000;
  5. events {
  6. worker_connections 2048;
  7. multi_accept on;
  8. use epoll;
  9. }
  10. http {
  11.   server_tokens off;
  12. sendfile on;
  13. tcp_nopush on;
  14. tcp_nodelay on;
  15. access_log off;
  16. error_log /var/log/nginx/error.log crit;
  17. keepalive_timeout 10;
  18. client_header_timeout 10;
  19. client_body_timeout 10;
  20. reset_timedout_connection on;
  21. send_timeout 10;
  22.   limit_conn_zone $binary_remote_addr zone=addr:5m;
  23.   limit_conn addr 100;
  24.   include /etc/nginx/mime.types;
  25.   default_type text/html;
  26.   charset UTF-8;
  27. }


回复帖子,请先登录注册

退出全屏模式 全屏模式 回复
评分
可选评分理由: