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.

245 lines
10.0KB

  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. # The following three `install_from_` options are mutually exclusive. If none is used, the distro's provided
  23. # package will be installed. If one of the `install_from` option is set to `True`, the state will
  24. # make sure the other two repos are removed.
  25. # Use the official's nginx repo binaries
  26. install_from_repo: false
  27. # Use Phusionpassenger's repo to install nginx and passenger binaries
  28. # Debian, Centos, Ubuntu and Redhat are currently available
  29. install_from_phusionpassenger: false
  30. # PPA install
  31. install_from_ppa: false
  32. # Set to 'stable', 'development' (mainline), 'community', or 'nightly' for each build accordingly ( https://launchpad.net/~nginx )
  33. ppa_version: 'stable'
  34. # Source install
  35. source_version: '1.10.0'
  36. source_hash: ''
  37. # These are usually set by grains in map.jinja
  38. # Typically you can comment these out.
  39. lookup:
  40. package: nginx-custom (can be a list)
  41. service: nginx
  42. webuser: www-data
  43. conf_file: /etc/nginx/nginx.conf
  44. server_available: /etc/nginx/sites-available
  45. server_enabled: /etc/nginx/sites-enabled
  46. server_use_symlink: True
  47. # If you install nginx+passenger from phusionpassenger in Debian, these values will probably be needed
  48. passenger_package: libnginx-mod-http-passenger
  49. passenger_config_file: /etc/nginx/conf.d/mod-http-passenger.conf
  50. # This is required for RedHat like distros (Amazon Linux) that don't follow semantic versioning for $releasever
  51. rh_os_releasever: '6'
  52. # Currently it can be used on rhel/centos/suse when installing from repo
  53. gpg_check: True
  54. pid_file: /var/run/nginx.pid ### Prevent Rendering SLS error (map.jinja:149) if nginx.server.config.pid undefined (Ubuntu, etc) ###
  55. # Source compilation is not currently a part of nginx.ng
  56. from_source: False
  57. source:
  58. opts: {}
  59. package:
  60. opts: {} # this partially exposes parameters of pkg.installed
  61. service:
  62. enable: True # Whether or not the service will be enabled/running or dead
  63. opts: {} # this partially exposes parameters of service.running / service.dead
  64. snippets: # You can use snippets to define often repeated configuration once and include it later
  65. letsencrypt: # e.g. this can be included using "- include: 'snippets/letsencrypt.conf'"
  66. - location ^~ /.well-known/acme-challenge/:
  67. - proxy_pass: http://localhost:9999
  68. server:
  69. opts: {} # this partially exposes file.managed parameters as they relate to the main nginx.conf file
  70. # nginx.conf (main server) declarations
  71. # dictionaries map to blocks {} and lists cause the same declaration to repeat with different values
  72. # see also http://nginx.org/en/docs/example.html
  73. config:
  74. source_path: salt://path_to_nginx_conf_file/nginx.conf # IMPORTANT: This option is mutually exclusive with the rest of the
  75. # options; if it is found other options (worker_processes: 4 and so
  76. # on) are not processed and just upload the file from source
  77. worker_processes: 4
  78. load_module: modules/ngx_http_lua_module.so # this will be passed very first in configuration; otherwise nginx will fail to start
  79. pid: /var/run/nginx.pid # Directory location must exist
  80. events:
  81. worker_connections: 768
  82. http:
  83. sendfile: 'on'
  84. include:
  85. #### Note: Syntax issues in these files generate nginx [emerg] errors on startup. ####
  86. - /etc/nginx/mime.types
  87. - /etc/nginx/conf.d/*.conf
  88. - /etc/nginx/sites-enabled/*
  89. ### module ngx_http_log_module example
  90. log_format: |-
  91. main '...';
  92. access_log /var/log/nginx/access_log main
  93. access_log: [] #suppress default access_log option from being added
  94. ### module nngx_stream_core_module
  95. stream:
  96. upstream lb-1000:
  97. - server:
  98. - hostname1.example.com:1000
  99. - hostname2.example.com:1000
  100. server:
  101. listen: 1000
  102. proxy_pass: lb-1000
  103. servers:
  104. disabled_postfix: .disabled # a postfix appended to files when doing non-symlink disabling
  105. symlink_opts: {} # partially exposes file.symlink params when symlinking enabled sites
  106. rename_opts: {} # partially exposes file.rename params when not symlinking disabled/enabled sites
  107. managed_opts: {} # partially exposes file.managed params for managed server files
  108. dir_opts: {} # partially exposes file.directory params for site available/enabled and snippets dirs
  109. # server declarations
  110. # servers will default to being placed in server_available
  111. managed:
  112. mysite: # relative pathname of the server file
  113. # may be True, False, or None where True is enabled, False, disabled, and None indicates no action
  114. enabled: True
  115. # Remove the site config file. Nice to clean up the conf.d (or sites-available).
  116. # It also remove the symlink (if it is exists).
  117. # The site MUST be disabled before delete it (if not the nginx is not reloaded).
  118. deleted: True
  119. ###########
  120. ## Modify 'available_dir' AND 'enabled_dir' '/etc/nginx' location to alternative value.
  121. ###########
  122. available_dir: /etc/nginx/sites-available # an alternate directory (not sites-available) where this server may be found
  123. enabled_dir: /etc/nginx/sites-enabled # an alternate directory (not sites-enabled) where this server may be found
  124. disabled_name: mysite.aint_on # an alternative disabled name to be use when not symlinking
  125. overwrite: True # overwrite an existing server file or not
  126. # May be a list of config options or None, if None, no server file will be managed/templated
  127. # Take server directives as lists of dictionaries. If the dictionary value is another list of
  128. # dictionaries a block {} will be started with the dictionary key name
  129. config:
  130. - server:
  131. - server_name: localhost
  132. - listen:
  133. - 80
  134. - default_server
  135. - index:
  136. - index.html
  137. - index.htm
  138. - location ~ .htm:
  139. - try_files:
  140. - $uri
  141. - $uri/ =404
  142. - test: something else
  143. - include 'snippets/letsencrypt.conf'
  144. # The above outputs:
  145. # server {
  146. # server_name localhost;
  147. # listen 80 default_server;
  148. # index index.html index.htm;
  149. # location ~ .htm {
  150. # try_files $uri $uri/ =404;
  151. # test something else;
  152. # }
  153. # }
  154. mysite2: # Using source_path options to upload the file instead of templating all the file
  155. enabled: True
  156. available_dir: /etc/nginx/sites-available
  157. enabled_dir: /etc/nginx/sites-enabled
  158. config:
  159. source_path: salt://path-to-site-file/mysite2
  160. # Below configuration becomes handy if you want to create custom configuration files
  161. # for example if you want to create /usr/local/etc/nginx/http_options.conf with
  162. # the following content:
  163. # sendfile on;
  164. # tcp_nopush on;
  165. # tcp_nodelay on;
  166. # send_iowait 12000;
  167. http_options.conf:
  168. enabled: True
  169. available_dir: /usr/local/etc/nginx
  170. enabled_dir: /usr/local/etc/nginx
  171. config:
  172. - sendfile: 'on'
  173. - tcp_nopush: 'on'
  174. - tcp_nodelay: 'on'
  175. - send_iowait: 12000
  176. certificates_path: '/etc/nginx/ssl' # Use this if you need to deploy below certificates in a custom path.
  177. # If you're doing SSL termination, you can deploy certificates this way.
  178. # The private one(s) should go in a separate pillar file not in version
  179. # control (or use encrypted pillar data).
  180. certificates:
  181. 'www.example.com':
  182. # choose one of: deploying this cert by pillar (e.g. in combination with ext_pillar and file_tree)
  183. # public_cert_pillar: certs:example.com:fullchain.pem
  184. # private_key_pillar: certs:example.com:privkey.pem
  185. # or directly pasting the cert
  186. public_cert: |
  187. -----BEGIN CERTIFICATE-----
  188. (Your Primary SSL certificate: www.example.com.crt)
  189. -----END CERTIFICATE-----
  190. -----BEGIN CERTIFICATE-----
  191. (Your Intermediate certificate: ExampleCA.crt)
  192. -----END CERTIFICATE-----
  193. -----BEGIN CERTIFICATE-----
  194. (Your Root certificate: TrustedRoot.crt)
  195. -----END CERTIFICATE-----
  196. private_key: |
  197. -----BEGIN RSA PRIVATE KEY-----
  198. (Your Private Key: www.example.com.key)
  199. -----END RSA PRIVATE KEY-----
  200. dh_param:
  201. 'mydhparam1.pem': |
  202. -----BEGIN DH PARAMETERS-----
  203. (Your custom DH prime)
  204. -----END DH PARAMETERS-----
  205. # or to generate one on-the-fly
  206. 'mydhparam2.pem':
  207. keysize: 2048
  208. # Passenger configuration
  209. # Default passenger configuration is provided, and will be deployed in
  210. # /etc/nginx/conf.d/passenger.conf
  211. passenger:
  212. passenger_root: /usr/lib/ruby/vendor_ruby/phusion_passenger/locations.ini
  213. passenger_ruby: /usr/bin/ruby
  214. passenger_instance_registry_dir: /var/run/passenger-instreg