Sha256: a751a67eb2bd9ddcee237a862fad2728a519995bae89b7c0959fa9ea16ac1b4e
Contents?: true
Size: 953 Bytes
Versions: 3
Compression:
Stored size: 953 Bytes
Contents
# # Cookbook Name:: nginx # Recipe:: default # # Author:: AJ Christensen <aj@junglist.gen.nz> # # Copyright 2008-2013, Chef Software, 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::#{node['nginx']['install_method']}" service 'nginx' do supports :status => true, :restart => true, :reload => true action :start end node['nginx']['default']['modules'].each do |ngx_module| include_recipe "nginx::#{ngx_module}" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
from-scratch-0.7.0 | cookbooks/nginx/recipes/default.rb |
from-scratch-0.6.0 | cookbooks/nginx/recipes/default.rb |
from-scratch-0.5.0 | cookbooks/nginx/recipes/default.rb |