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-1.4.5 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-2.0.0.beta spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.4.4 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.4.3 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.4.2 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.4.1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.4.0 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.4.0.rc1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.3.1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.3.0.rc1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.2.1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.2.0.rc1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.1.6 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.1.5 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.1.4 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.1.3 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.1.2 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.1.1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.1.0 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb
berkshelf-1.1.0.rc1 spec/fixtures/cookbooks/nginx-0.100.5/attributes/default.rb