Sha256: 1f2b0f08522257fd898082e4aebb9672f4f902f9262719d57748f1594d30da5a

Contents?: true

Size: 1.98 KB

Versions: 73

Compression:

Stored size: 1.98 KB

Contents

#
# Cookbook Name:: nginx
# Attributes:: default
#
# Author:: Adam Jacob (<adam@opscode.com>)
# Author:: Joshua Timberman (<joshua@opscode.com>)
#
# Copyright 2009-2011, Opscode, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

default[:nginx][:version] = "1.0.14"

case platform
when "debian","ubuntu"
  default[:nginx][:dir]        = "/etc/nginx"
  default[:nginx][:log_dir]    = "/var/log/nginx"
  default[:nginx][:user]       = "www-data"
  default[:nginx][:binary]     = "/usr/sbin/nginx"
  default[:nginx][:init_style] = "runit"
else
  default[:nginx][:dir]        = "/etc/nginx"
  default[:nginx][:log_dir]    = "/var/log/nginx"
  default[:nginx][:user]       = "www-data"
  default[:nginx][:binary]     = "/usr/sbin/nginx"
  default[:nginx][:init_style] = "init"
end

default[:nginx][:pid] = "/var/run/nginx.pid"

default[:nginx][:gzip]              = "on"
default[:nginx][:gzip_http_version] = "1.0"
default[:nginx][:gzip_comp_level]   = "2"
default[:nginx][:gzip_proxied]      = "any"
default[:nginx][:gzip_types]        = [
  "text/plain",
  "text/html",
  "text/css",
  "application/x-javascript",
  "text/xml",
  "application/xml",
  "application/xml+rss",
  "text/javascript",
  "application/javascript",
  "application/json"
]

default[:nginx][:keepalive]          = "on"
default[:nginx][:keepalive_timeout]  = 65
default[:nginx][:worker_processes]   = cpu[:total]
default[:nginx][:worker_connections] = 1024
default[:nginx][:server_names_hash_bucket_size] = 64

default[:nginx][:disable_access_log] = false

Version data entries

73 entries across 73 versions & 1 rubygems

Version Path
berkshelf-2.0.18 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.17 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.16 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.15 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.14 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.13 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.12 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.11 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.10 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.9 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.8 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-3.0.0.beta1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.7 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.6 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.5 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.4 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.4.6 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.3 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.0 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb