Saltstack Official Nginx Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 11 години
преди 11 години
преди 10 години
преди 11 години
преди 11 години
преди 10 години
преди 10 години
преди 9 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 10 години
преди 9 години
преди 10 години
преди 9 години
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. nginx:
  2. install_from_source: True
  3. use_upstart: True
  4. use_sysvinit: False
  5. user_auth_enabled: True
  6. with_luajit: False
  7. with_openresty: True
  8. repo_version: development # Must be using ppa install by setting `repo_source = ppa`
  9. set_real_ips: # NOTE: to use this, nginx must have http_realip module enabled
  10. from_ips:
  11. - 10.10.10.0/24
  12. real_ip_header: X-Forwarded-For
  13. modules:
  14. headers-more:
  15. source: http://github.com/agentzh/headers-more-nginx-module/tarball/v0.21
  16. source_hash: sha1=dbf914cbf3f7b6cb7e033fa7b7c49e2f8879113b
  17. # ========
  18. # nginx.ng
  19. # ========
  20. nginx:
  21. ng:
  22. # PPA installing
  23. install_from_ppa: True
  24. # Set to 'stable', 'development' (mainline), 'community', or 'nightly' for each build accordingly ( https://launchpad.net/~nginx )
  25. ppa_version: 'stable'
  26. # These are usually set by grains in map.jinja
  27. lookup:
  28. package: nginx-custom
  29. service: nginx
  30. webuser: www-data
  31. conf_file: /etc/nginx/nginx.conf
  32. vhost_available: /etc/nginx/sites-available
  33. vhost_enabled: /etc/nginx/sites-enabled
  34. vhost_use_symlink: True
  35. rh_os_releasever: '6'
  36. # Source compilation is not currently a part of nginx.ng
  37. from_source: False
  38. package:
  39. opts: {} # this partially exposes parameters of pkg.installed
  40. service:
  41. enable: True # Whether or not the service will be enabled/running or dead
  42. opts: {} # this partially exposes parameters of service.running / service.dead
  43. server:
  44. opts: {} # this partially exposes file.managed parameters as they relate to the main nginx.conf file
  45. # nginx.conf (main server) declarations
  46. # dictionaries map to blocks {} and lists cause the same declaration to repeat with different values
  47. config:
  48. worker_processes: 4
  49. pid: /run/nginx.pid
  50. events:
  51. worker_connections: 768
  52. http:
  53. sendfile: 'on'
  54. include:
  55. - /etc/nginx/mime.types
  56. - /etc/nginx/conf.d/*.conf
  57. vhosts:
  58. disabled_postfix: .disabled # a postfix appended to files when doing non-symlink disabling
  59. symlink_opts: {} # partially exposes file.symlink params when symlinking enabled sites
  60. rename_opts: {} # partially exposes file.rename params when not symlinking disabled/enabled sites
  61. managed_opts: {} # partially exposes file.managed params for managed vhost files
  62. dir_opts: {} # partially exposes file.directory params for site available/enabled dirs
  63. # vhost declarations
  64. # vhosts will default to being placed in vhost_available
  65. managed:
  66. mysite: # relative pathname of the vhost file
  67. # may be True, False, or None where True is enabled, False, disabled, and None indicates no action
  68. available_dir: /tmp/sites-available # an alternate directory (not sites-available) where this vhost may be found
  69. enabled_dir: /tmp/sites-enabled # an alternate directory (not sites-available) where this vhost may be found
  70. disabled_name: mysite.aint_on # an alternative disabled name to be use when not symlinking
  71. enabled: True
  72. # May be a list of config options or None, if None, no vhost file will be managed/templated
  73. # Take server directives as lists of dictionaries. If the dictionary value is another list of
  74. # dictionaries a block {} will be started with the dictionary key name
  75. config:
  76. - server:
  77. - server_name: localhost
  78. - listen:
  79. - 80
  80. - default_server
  81. - index:
  82. - index.html
  83. - index.htm
  84. - location ~ .htm:
  85. - try_files:
  86. - $uri
  87. - $uri/ =404
  88. - test: something else
  89. # The above outputs:
  90. # server {
  91. # server_name localhost;
  92. # listen 80 default_server;
  93. # index index.html index.htm;
  94. # location ~ .htm {
  95. # try_files $uri $uri/ =404;
  96. # test something else;
  97. # }
  98. # }
  99. # If you're doing SSL termination, you can deploy certificates this way.
  100. # The private one(s) should go in a separate pillar file not in version
  101. # control (or use encrypted pillar data).
  102. certificates:
  103. 'www.example.com':
  104. public_cert: |
  105. -----BEGIN CERTIFICATE-----
  106. (Your Primary SSL certificate: www.example.com.crt)
  107. -----END CERTIFICATE-----
  108. -----BEGIN CERTIFICATE-----
  109. (Your Intermediate certificate: ExampleCA.crt)
  110. -----END CERTIFICATE-----
  111. -----BEGIN CERTIFICATE-----
  112. (Your Root certificate: TrustedRoot.crt)
  113. -----END CERTIFICATE-----
  114. private_key: |
  115. -----BEGIN RSA PRIVATE KEY-----
  116. (Your Private Key: www.example.com.key)
  117. -----END RSA PRIVATE KEY-----