common.yaml 497 B

123456789101112131415161718192021
  1. ---
  2. nginx::user: 'nobody nobody'
  3. nginx::worker_processes: 1
  4. nginx::pid: 'logs/nginx.pid'
  5. nginx::worker_connections: 512
  6. nginx::sendfile: 'off'
  7. nginx::tcp_nopush: 'off'
  8. nginx::tcp_nodelay: 'on'
  9. nginx::keepalive_timeout: '75s'
  10. nginx::types_hash_max_size: 1024
  11. nginx::default_type: 'text/plain'
  12. nginx::ssl_protocols: ['TLSv1', 'TLSv1.1', 'TLSv1.2']
  13. nginx::ssl_prefer_server_ciphers: 'off'
  14. nginx::access_log: 'logs/access.log combined'
  15. nginx::error_log: 'logs/error.log error'
  16. nginx::gzip: 'off'