# # Cookbook:: nginx # Attributes:: source # # Author:: Jamie Winsor () # # Copyright:: 2012-2017, Riot Games # # 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_attribute 'nginx::default' default['nginx']['init_style'] = if node['platform'] == 'ubuntu' && node['platform_version'].to_f <= 14.04 # init_package identifies 12.04/14.04 as init, but we should be using upstart here 'upstart' else node['init_package'] end default['nginx']['source']['version'] = node['nginx']['version'] default['nginx']['source']['prefix'] = "/opt/nginx-#{node['nginx']['source']['version']}" default['nginx']['source']['conf_path'] = "#{node['nginx']['dir']}/nginx.conf" default['nginx']['source']['sbin_path'] = "#{node['nginx']['source']['prefix']}/sbin/nginx" # Wno-error can be removed when nginx compiles on GCC7: https://trac.nginx.org/nginx/ticket/1259 default['nginx']['source']['default_configure_flags'] = %W( --prefix=#{node['nginx']['source']['prefix']} --conf-path=#{node['nginx']['dir']}/nginx.conf --sbin-path=#{node['nginx']['source']['sbin_path']} --with-cc-opt=-Wno-error ) default['nginx']['configure_flags'] = [] default['nginx']['source']['version'] = node['nginx']['version'] default['nginx']['source']['url'] = "http://nginx.org/download/nginx-#{node['nginx']['source']['version']}.tar.gz" default['nginx']['source']['checksum'] = '8793bf426485a30f91021b6b945a9fd8a84d87d17b566562c3797aba8fac76fb' default['nginx']['source']['modules'] = %w( nginx::http_ssl_module nginx::http_gzip_static_module ) default['nginx']['source']['use_existing_user'] = false