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.

67 lines
2.7KB

  1. {% set nginx = pillar.get('nginx', {}) -%}
  2. {% set user = nginx.get('user', 'www-data') -%}
  3. {% set group = nginx.get('group', 'www-data') -%}
  4. user {{ user }} {{ group }};
  5. worker_processes {{ nginx.get('worker_processes', 1) }};
  6. error_log /var/log/nginx/error.fifo warn;
  7. pid {{ nginx.get('pid', '/var/run/nginx.pid') }};
  8. daemon {{ nginx.get('daemon', 'off') }};
  9. events {
  10. worker_connections {{ nginx.get('events', {}).get('worker_connections', 1024) }};
  11. }
  12. http {
  13. {% if 'set_real_ips' in nginx -%}
  14. {% for ip in nginx.get('set_real_ips', {}).get('ips', []) -%}
  15. set_real_ip_from {{ ip }};
  16. {% endfor -%}
  17. real_ip_header {{ nginx.get('set_real_ips', {}).get('real_ip_header', 'X-Forwarded-For') }};
  18. {% endif -%}
  19. include /etc/nginx/mime.types;
  20. default_type application/octet-stream;
  21. log_format main '$scheme://$host:$server_port$uri$is_args$args $remote_addr:$remote_user "$request" $request_time $request_length:$bytes_sent $status "$http_referer" "$http_user_agent" "$http_x_forwarded_for"';
  22. access_log /var/log/nginx/access.fifo main;
  23. sendfile {{ nginx.get('sendfile', 'on') }};
  24. #tcp_nopush on;
  25. keepalive_timeout {{ nginx.get('keepalive_timeout', 65) }};
  26. server_names_hash_bucket_size {{ nginx.get('server_names_hash_bucket_size', 128) }};
  27. server_names_hash_max_size {{ nginx.get('server_names_hash_max_size', 1024) }};
  28. types_hash_max_size {{ nginx.get('types_hash_max_size', 8192) }};
  29. gzip {{ nginx.get('gzip', 'on') }};
  30. gzip_vary {{ nginx.get('gzip_vary', 'on') }};
  31. gzip_proxied {{ nginx.get('gzip_proxied', 'any') }};
  32. gzip_comp_level {{ nginx.get('gzip_comp_level', 6) }};
  33. gzip_buffers {{ nginx.get('gzip_buffers', '16 8k') }};
  34. gzip_http_version {{ nginx.get('gzip_http_version', '1.1') }};
  35. gzip_types {{ nginx.get('gzip_types', ['text/plain', 'text/css', 'application/json', 'application/x-javascript', 'text/xml', 'application/xml', 'application/xml+rss', 'text/javascript'])|join(' ') }};
  36. # turn on nginx_status on localhost
  37. server {
  38. listen 127.0.0.1:80;
  39. server_name 127.0.0.1;
  40. location /nginx_status {
  41. stub_status on;
  42. access_log off;
  43. allow 127.0.0.1;
  44. deny all;
  45. }
  46. }
  47. {% if pillar['nginx'] is defined -%}
  48. {% if pillar['nginx']['redirect_numeric_ip']|default(False) %}
  49. server {
  50. server_name {% for ip in salt['network.interfaces']()['eth0']['inet'] %}{{ ip['address'] }}:80{% if not loop.last %} {% endif %}{% endfor %};
  51. return 302 {{ pillar['nginx']['redirect_numeric_ip'] }};
  52. access_log off;
  53. }
  54. {% endif %}
  55. {% endif %}
  56. include /etc/nginx/conf.d/*.conf;
  57. include /etc/nginx/sites-enabled/*.conf;
  58. }