Sha256: a673a69f5735d896ec505be5fc2354a0f052fcc25c65b37d4bef8d5bb1da3870

Contents?: true

Size: 1.39 KB

Versions: 73

Compression:

Stored size: 1.39 KB

Contents

#
# Cookbook Name:: nginx
# Recipe:: default
# Author:: AJ Christensen <aj@junglist.gen.nz>
#
# Copyright 2008-2009, 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.
#

include_recipe "nginx::ohai_plugin"

package "nginx"

directory node[:nginx][:log_dir] do
  mode 0755
  owner node[:nginx][:user]
  action :create
end

%w{nxensite nxdissite}.each do |nxscript|
  template "/usr/sbin/#{nxscript}" do
    source "#{nxscript}.erb"
    mode 0755
    owner "root"
    group "root"
  end
end

template "nginx.conf" do
  path "#{node[:nginx][:dir]}/nginx.conf"
  source "nginx.conf.erb"
  owner "root"
  group "root"
  mode 0644
  notifies :reload, "service[nginx]"
end

template "#{node[:nginx][:dir]}/sites-available/default" do
  source "default-site.erb"
  owner "root"
  group "root"
  mode 0644
end

service "nginx" do
  supports :status => true, :restart => true, :reload => true
  action [ :enable, :start ]
end

Version data entries

73 entries across 73 versions & 1 rubygems

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