]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nginx/recipes/default.rb
Use systemd-resolved stub resolver for nginx resolver
[chef.git] / cookbooks / nginx / recipes / default.rb
1 #
2 # Cookbook:: nginx
3 # Recipe:: default
4 #
5 # Copyright:: 2013, OpenStreetMap Foundation
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 include_recipe "apt"
21 include_recipe "munin"
22
23 package "nginx"
24
25 template "/etc/nginx/nginx.conf" do
26   source "nginx.conf.erb"
27   owner "root"
28   group "root"
29   mode 0o644
30 end
31
32 directory node[:nginx][:cache][:fastcgi][:directory] do
33   owner "www-data"
34   group "root"
35   mode 0o755
36   recursive true
37   only_if { node[:nginx][:cache][:fastcgi][:enable] }
38 end
39
40 directory node[:nginx][:cache][:proxy][:directory] do
41   owner "www-data"
42   group "root"
43   mode 0o755
44   recursive true
45   only_if { node[:nginx][:cache][:proxy][:enable] }
46 end
47
48 service "nginx" do
49   action [:enable] # Do not start the service as config may be broken from failed chef run
50   supports :status => true, :restart => true, :reload => true
51   subscribes :restart, "template[/etc/nginx/nginx.conf]"
52 end
53
54 munin_plugin_conf "nginx" do
55   template "munin.erb"
56 end
57
58 package "libwww-perl"
59
60 munin_plugin "nginx_request"
61 munin_plugin "nginx_status"