• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

关闭

返回栏目

关闭

返回服务器栏目

114 - Nginx高级 - nginx.conf模板

作者:

贺及楼

成为作者

更新日期:2024-05-11 11:55:10

nginx.conf模板

做这个的目的:
1、看清楚结构目录
2、里面的选项和解释非常多
3、基本上还有很多模块要加入,最好通过这个方式,不然真的是乱的可以
4、server和server名不应该收起来,方便查看

  1. include conf.d/A_Main_Base.conf; # main全局配置段配置文件:正常运行必备的配置:用户
  2. include conf.d/A_Main_processes.conf; # main全局配置段配置文件:优化性能相关的配置
  3. include conf.d/A_Main_Other.conf; # main全局配置段配置文件:用于调试及定位问题相关的配置
  4. include /etc/nginx/modules-enabled/*.conf;
  5. events {
  6. include conf.d/B_Events.conf; # events用户网络连接配置段配置文件
  7. }
  8. http {
  9. include conf.d/C_http_Limit.conf; # 限流配置:文件大小、缓存
  10. include conf.d/C_http_Log.conf; # 日志配置
  11. include conf.d/C_http_Safe.conf; # 安全配置:过滤策略
  12. include conf.d/C_http_Timeout.conf; # 超时配置:请求头、请求体超时
  13. server {
  14. listen 80;
  15. server_name 1.2.3.4; # 域名
  16. rewrite ^(.*)$ https://1.2.3.4$1; # 转443端口
  17. }
  18. server {
  19. listen 443;
  20. server_name 1.2.3.4; # 域名
  21. charset utf-8;
  22. include conf.d/http_1234_443_server_SSL.conf; # SSL配置
  23. include conf.d/http_1234_443_server_Safe.conf; # 安全配置:过滤策略
  24. include conf.d/http_1234_443_server_Log.conf; # 日志配置
  25. include conf.d/http_1234_443_server_Limit.conf; # 限流配置:文件大小、缓存
  26. include conf.d/http_1234_443_server_Timeout.conf; # 超时配置:请求头、请求体超时
  27. location / {
  28. uwsgi_pass 127.0.0.1:8001;
  29. include /etc/nginx/uwsgi_params;
  30. include conf.d/http_1234_443_server_location_uwsgi_Base.conf; # uwsgi_Base配置
  31. include conf.d/http_1234_443_server_location_uwsgi_SSL.conf; # uwsgi_SSL配置
  32. include conf.d/http_1234_443_server_location_uwsgi_cache.conf; # uwsgi_cache配置
  33. }
  34. }
  35. }
  36. #mail {
  37. # # See sample authentication script at:
  38. # # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
  39. #
  40. # # auth_http localhost/auth.php;
  41. # # pop3_capabilities "TOP" "USER";
  42. # # imap_capabilities "IMAP4rev1" "UIDPLUS";
  43. #
  44. # server {
  45. # listen localhost:110;
  46. # protocol pop3;
  47. # proxy on;
  48. # }
  49. #
  50. # server {
  51. # listen localhost:143;
  52. # protocol imap;
  53. # proxy on;
  54. # }
  55. #}