一个完整的nginx配置案例,生产环境


  1. 一个完整配置例(生产环境中使用)
  2. user nobody nobody;
  3. worker_processes 4;
  4. worker_rlimit_nofile 51200;
  5. error_log logs/error.log notice;
  6. pid /var/run/nginx.pid;
  7. events {
  8. use epoll;
  9. worker_connections 51200;
  10. }
  11. http {
  12. server_tokens off;
  13. include mime.types;
  14. proxy_redirect off;
  15. proxy_set_header Host $host;
  16. proxy_set_header X-Real-IP $remote_addr;
  17. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  18. client_max_body_size 20m;
  19. client_body_buffer_size 256k;
  20. proxy_connect_timeout 90;
  21. proxy_send_timeout 90;
  22. proxy_read_timeout 90;
  23. proxy_buffer_size 128k;
  24. proxy_buffers 4 64k;
  25. proxy_busy_buffers_size 128k;
  26. proxy_temp_file_write_size 128k;
  27. default_type application/octet-stream;
  28. charset utf-8;
  29. client_body_temp_path /var/tmp/client_body_temp 1 2;
  30. proxy_temp_path /var/tmp/proxy_temp 1 2;
  31. fastcgi_temp_path /var/tmp/fastcgi_temp 1 2;
  32. uwsgi_temp_path /var/tmp/uwsgi_temp 1 2;
  33. scgi_temp_path /var/tmp/scgi_temp 1 2;
  34. ignore_invalid_headers on;
  35. server_names_hash_max_size 256;
  36. server_names_hash_bucket_size 64;
  37. client_header_buffer_size 8k;
  38. large_client_header_buffers 4 32k;
  39. connection_pool_size 256;
  40. request_pool_size 64k;
  41. output_buffers 2 128k;
  42. postpone_output 1460;
  43. client_header_timeout 1m;
  44. client_body_timeout 3m;
  45. send_timeout 3m;
  46. log_format main '$server_addr $remote_addr [$time_local] $msec+$connection '
  47. '"$request" $status $connection $request_time $body_bytes_sent "$http_referer" '
  48. '"$http_user_agent" "$http_x_forwarded_for"';
  49. open_log_file_cache max=1000 inactive=20s min_uses=1 valid=1m;
  50. access_log logs/access.log main;
  51. log_not_found on;
  52. sendfile on;
  53. tcp_nodelay on;
  54. tcp_nopush off;
  55. reset_timedout_connection on;
  56. keepalive_timeout 10 5;
  57. keepalive_requests 100;
  58. gzip on;
  59. gzip_http_version 1.1;
  60. gzip_vary on;
  61. gzip_proxied any;
  62. gzip_min_length 1024;
  63. gzip_comp_level 6;
  64. gzip_buffers 16 8k;
  65. gzip_proxied expired no-cache no-store private auth no_last_modified no_etag;
  66. gzip_types text/plain application/x-javascript text/css application/xml application/json;
  67. gzip_disable "MSIE [1-6]\.(?!.*SV1)";
  68. upstream tomcat8080 {
  69. ip_hash;
  70. server 172.16.100.103:8080 weight=1 max_fails=2;
  71. server 172.16.100.104:8080 weight=1 max_fails=2;
  72. server 172.16.100.105:8080 weight=1 max_fails=2;
  73. }
  74. server {
  75. listen 80;
  76. server_name www.magedu.com;
  77. # config_apps_begin
  78. root /data/webapps/htdocs;
  79. access_log /var/logs/webapp.access.log main;
  80. error_log /var/logs/webapp.error.log notice;
  81. location / {
  82. location ~* ^.*/favicon.ico$ {
  83. root /data/webapps;
  84. expires 180d;
  85. break;
  86. }
  87. if ( !-f $request_filename ) {
  88. proxy_pass http://tomcat8080;
  89. break;
  90. }
  91. }
  92. error_page 500 502 503 504 /50x.html;
  93. location = /50x.html {
  94. root html;
  95. }
  96. }
  97. server {
  98. listen 8088;
  99. server_name nginx_status;
  100. location / {
  101. access_log off;
  102. deny all;
  103. return 503;
  104. }
  105. location /status {
  106. stub_status on;
  107. access_log off;
  108. allow 127.0.0.1;
  109. allow 172.16.100.71;
  110. deny all;
  111. }
  112. }
  113. }

一个完整配置例nginx.conf(生产环境中使用)的更多相关文章

  1. 生产环境中tomcat的配置

    生产环境中要以daemon方式运行tomcat 通常在开发环境中,我们使用$CATALINA_HOME/bin/startup.sh来启动tomcat, 使用$CATALINA_HOME/bin/sh ...

  2. 【原】Storm Local模式和生产环境中Topology运行配置

    Storm入门教程 1. Storm基础 Storm Storm主要特点 Storm基本概念 Storm调度器 Storm配置 Guaranteeing Message Processing(消息处理 ...

  3. Spring Boot 利用 nginx 实现生产环境的伪热更新

    当我们在服务器部署Java程序,特别是使用了 Spring Boot 生成单一 Jar 文件部署的时候,单一文件为我们开发单来的极大的便利性,保障程序的完整性.但同时对我们修改程序中的任何一处都带来重 ...

  4. 10: Django + Uwsgi + Nginx 的生产环境部署

    1.1 一些重要概念 1.Web协议介绍 Web协议出现顺序: CGI -> FCGI -> WSGI -> uwsgi 1. CGI:  最早的协议 2. FCGI:  比CGI快 ...

  5. Django + Uwsgi + Nginx 的生产环境部署实战

    目录 Django + Uwsgi + Nginx 的生产环境部署实战 安装Uwsgi 一.使用命令来启动django项目 二.使用配置文件来启动我们的Django项目 安装Nginx 配置Nginx ...

  6. 11: Django + gunicorn + Nginx 的生产环境部署

    1.1 gunicorn介绍   1.Gunicorn 1. Gunicorn是使用Python实现的WSGI服务器, 直接提供了http服务, 并且在woker上提供了多种选择, gevent, e ...

  7. Django+Nginx+uWSGI生产环境部署

    生产环境中的数据流 参考文档: wsgi详解:https://blog.csdn.net/li_101357/article/details/52748323 wsgi协议介绍(萌新版):https: ...

  8. Confluence 6 从生产环境中恢复一个测试实例

    请参考 Restoring a Test Instance from Production 页面中的内容获得更多完整的说明. 很多 Confluence 的管理员将会使用生产实例运行完整数据和服务的 ...

  9. 配置Django框架为生产环境的注意事项(DEBUG=False)

    问题描述: Django1.10版本中框架中settings.py配置文件 配置文件settings.py配置了下面两项: DEBUG= False ALLOWED_HOSTS = ['*'] #这样 ...

随机推荐

  1. amazeui学习笔记--css(常用组件15)--CSS动画Animation

    amazeui学习笔记--css(常用组件15)--CSS动画Animation 一.总结 1.css3动画封装:CSS3 动画封装,浏览器需支持 CSS3 动画. Class 描述 .am-anim ...

  2. 常用协议(SPI, UART, I2C)

    SPI: SPI是全双工的同步串行接口,数据速率可达几Mbps,在一般应用中有4根信号线:MOSI, MISO, SCK, SS. 根据时钟极性(CPOL)及相位(CPHA)不同可以组合成4种工作模式 ...

  3. NSDate时间

    NSDate 使用 ios时间的秒数 取当前时间的秒数 NSTimeInterval time = [[NSDate date] timeIntervalSince1970]; long long i ...

  4. Python代码优化及技巧笔记(一)

    前言 这里是记录一些本人在开发过程中遇到的一些细节问题.与君共勉. 版权说明 著作权归作者全部.商业转载请联系作者获得授权,非商业转载请注明出处. 作者:Coding-Naga链接:http://bl ...

  5. stm32的adc时钟周期,ADC_SampleTime_1Cycles5是多长时间

  6. 强力推荐微信小程序之简易计算器,很适合小白程序员

    原文链接:https://mp.weixin.qq.com/s/gYF7GjTRpeZNoKPAPI9aXA 1 概述 前几日QQ群里的朋友问我有没有计算器小程序案例,今天我们说下小程序计算器,然后就 ...

  7. ado连接mysql和ORACLE

    ------mysql strConnect.Format("Provider=MSDASQL.1;Driver={%s};Server=%s;DataBase=%s;UID=%s;PWD= ...

  8. php替换空格(php函数的设计思路)

    php替换空格(php函数的设计思路) 一.总结 1.替换和也是先查找了再替换,截取的话就是先查找到再截取 2.设计函数的时候按照的是缺省参数在后,核心东西在前的思路来设计函数的:查找的话是$sear ...

  9. Python 线程启动的四种方式

    import threading,_thread def action(i): print(i **32) #带有状态的子类 class Mythread(threading.Thread): def ...

  10. openstack中虚拟机怎么与物理机通信

    How-to-connection-ns-outside 环境配置 网络接口 vi /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 TYPE ...