Sha256: f7614361a6c0c5bbfcfab6a1fe65cff4b0ae4c0ed6d90588f4559eeefcdceb83
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 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. # 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 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
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
ruby-ldap-0.9.12 | test/cookbooks/nginx/recipes/default.rb |
rails-up-0.0.1 | templates/chef/cookbooks/nginx/recipes/default.rb |