123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #
- # Cookbook Name:: application
- # Recipe:: passenger_apache2
- #
- # Copyright 2010, 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.
- #
- Chef::Log.warn "The application::passenger_apache2 recipe is deprecated and will go away on Aug 1st. See the README for migration information."
- app = node.run_state[:current_app]
- include_recipe "apache2"
- include_recipe "apache2::mod_ssl"
- include_recipe "apache2::mod_rewrite"
- include_recipe "passenger_apache2::mod_rails"
- server_aliases = [ "#{app['id']}.#{node['domain']}", node['fqdn'] ]
- if node.has_key?("cloud")
- server_aliases << node['cloud']['public_hostname']
- end
-
- web_app app['id'] do
- docroot "#{app['deploy_to']}/current/public"
- template "#{app['id']}.conf.erb"
- cookbook "#{app['id']}"
- server_name "#{app['id']}.#{node[:domain]}"
- server_aliases server_aliases
- log_dir node[:apache][:log_dir]
- rails_env node.chef_environment
- end
- if ::File.exists?(::File.join(app['deploy_to'], "current"))
- d = resources(:deploy_revision => app['id'])
- d.restart_command do
- service "apache2" do action :restart; end
- end
- end
- apache_site "000-default" do
- enable false
- end
|