# # Cookbook:: nginx # Resource:: site # # Author:: AJ Christensen # Author:: Tim Smith # # Copyright:: 2008-2017, 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. # property :site_name, String, name_property: true property :variables, Hash, default: {} property :cookbook, String property :template, [String, Array] property :enable, [String, true, false] action :enable do # this is pretty evil, but gives us backwards compat with the old # definition where there was an enable property vs a true action if new_resource.enable Chef::Log.warn('The "enable" property in nginx_site is deprecated. Use "action :enable" instead.') elsif new_resource.enable == false || new_resource.enable == 'false' Chef::Log.warn('The "enable" property in nginx_site is deprecated. Use "action :disable" instead.') action_disable return # don't perform the actual enable action afterwards end if new_resource.template # use declare_resource so we can have a property also named template declare_resource(:template, "#{node['nginx']['dir']}/sites-available/#{new_resource.site_name}") do source new_resource.template cookbook new_resource.cookbook variables(new_resource.variables) notifies :reload, 'service[nginx]' end end execute "nxensite #{new_resource.site_name}" do command "#{node['nginx']['script_dir']}/nxensite #{new_resource.site_name}" notifies :reload, 'service[nginx]' not_if do ::File.symlink?("#{node['nginx']['dir']}/sites-enabled/#{new_resource.site_name}") || ::File.symlink?("#{node['nginx']['dir']}/sites-enabled/000-#{new_resource.site_name}") end end end action :disable do execute "nxdissite #{new_resource.site_name}" do command "#{node['nginx']['script_dir']}/nxdissite #{new_resource.site_name}" notifies :reload, 'service[nginx]' only_if do ::File.symlink?("#{node['nginx']['dir']}/sites-enabled/#{new_resource.site_name}") || ::File.symlink?("#{node['nginx']['dir']}/sites-enabled/000-#{new_resource.site_name}") end end # The nginx.org packages store the default site at /etc/nginx/conf.d/default.conf and our # normal script doesn't disable these. if new_resource.site_name == 'default' && ::File.exist?('/etc/nginx/conf.d/default.conf') # ~FC023 execute 'Move nginx.org package default site config to sites-available' do command "mv /etc/nginx/conf.d/default.conf #{node['nginx']['dir']}/sites-available/default" user 'root' notifies :reload, 'service[nginx]' end end end