Debian.yaml 642 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. nginx::server_package: 'nginx'
  3. nginx::server_service: 'nginx'
  4. # Global section
  5. nginx::user: 'www-data'
  6. nginx::worker_processes: 'auto'
  7. nginx::pid: '/run/nginx.pid'
  8. # Events section
  9. nginx::worker_connections: 768
  10. # HTTP Basic section
  11. nginx::sendfile: 'on'
  12. nginx::tcp_nopush: 'on'
  13. nginx::keepalive_timeout: 65
  14. nginx::types_hash_max_size: 2048
  15. nginx::default_type: 'application/octet-stream'
  16. # HTTP SSL section
  17. nginx::ssl_prefer_server_ciphers: 'on'
  18. # HTTP Logging section
  19. nginx::access_log: '/var/log/nginx/access.log'
  20. nginx::error_log: '/var/log/nginx/error.log'
  21. # HTTP Gzip section
  22. nginx::gzip: 'on'
  23. nginx::gzip_disable: ['msie6']