2011-06-07 00:25:04 +02:00
|
|
|
user <%= scope.lookupvar('nginx::config::nx_daemon_user') %>;
|
2013-07-17 20:42:57 +02:00
|
|
|
worker_processes <%= @worker_processes %>;
|
2011-06-07 00:25:04 +02:00
|
|
|
|
2013-08-08 03:27:13 +02:00
|
|
|
error_log <%= @nginx_error_log %>;
|
2011-06-07 00:25:04 +02:00
|
|
|
pid <%= scope.lookupvar('nginx::params::nx_pid')%>;
|
|
|
|
|
|
|
|
events {
|
2013-07-17 20:42:57 +02:00
|
|
|
worker_connections <%= @worker_connections -%>;
|
2013-05-21 15:15:59 +02:00
|
|
|
<% if scope.lookupvar('nginx::params::nx_multi_accept') == 'on' %>multi_accept on;<% end -%>
|
|
|
|
<% if scope.lookupvar('nginx::params::nx_events_use') %>use <%= scope.lookupvar('nginx::params::nx_events_use')%>;<% end -%>
|
2011-06-07 00:25:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
|
|
|
include /etc/nginx/mime.types;
|
|
|
|
default_type application/octet-stream;
|
|
|
|
|
2013-08-08 03:27:13 +02:00
|
|
|
access_log <%= @http_access_log %>;
|
2011-06-07 00:25:04 +02:00
|
|
|
|
|
|
|
sendfile <%= scope.lookupvar('nginx::params::nx_sendfile')%>;
|
|
|
|
|
2013-07-17 20:42:57 +02:00
|
|
|
server_tokens <%= @server_tokens %>;
|
2013-04-24 10:42:06 +02:00
|
|
|
<% if scope.lookupvar('nginx::params::nx_tcp_nopush') == 'on' %>tcp_nopush on;<% end %>
|
2011-06-07 00:25:04 +02:00
|
|
|
|
2013-05-14 04:46:06 +02:00
|
|
|
types_hash_max_size <%= scope.lookupvar('nginx::params::nx_types_hash_max_size')%>;
|
|
|
|
types_hash_bucket_size <%= scope.lookupvar('nginx::params::nx_types_hash_bucket_size')%>;
|
2011-06-07 00:25:04 +02:00
|
|
|
|
2013-06-20 16:48:52 +02:00
|
|
|
server_names_hash_bucket_size <%= scope.lookupvar('nginx::params::nx_names_hash_bucket_size')%>;
|
|
|
|
|
2011-06-07 00:25:04 +02:00
|
|
|
keepalive_timeout <%= scope.lookupvar('nginx::params::nx_keepalive_timeout')%>;
|
|
|
|
tcp_nodelay <%= scope.lookupvar('nginx::params::nx_tcp_nodelay')%>;
|
|
|
|
|
2013-07-21 17:40:29 +02:00
|
|
|
<% if scope.lookupvar('nginx::params::nx_gzip') == 'on' %>
|
2011-06-07 00:25:04 +02:00
|
|
|
gzip on;
|
|
|
|
gzip_disable "MSIE [1-6]\.(?!.*SV1)";
|
2013-07-21 17:40:29 +02:00
|
|
|
<% end -%>
|
2013-03-27 19:13:52 +01:00
|
|
|
|
2013-07-17 20:42:57 +02:00
|
|
|
<% if @proxy_cache_path -%>
|
|
|
|
proxy_cache_path <%= @proxy_cache_path %> levels=<%= @proxy_cache_levels %> keys_zone=<%= @proxy_cache_keys_zone %> max_size=<%= @proxy_cache_max_size %> inactive=<%= @proxy_cache_inactive %>;
|
2013-03-27 19:13:52 +01:00
|
|
|
<% end -%>
|
2011-06-07 00:25:04 +02:00
|
|
|
|
2013-07-21 02:12:18 +02:00
|
|
|
<% if @http_cfg_append -%><% @http_cfg_append.sort_by{|k,v| k}.each do |key,value| -%>
|
|
|
|
<%= key %> <%= value %>;
|
|
|
|
<% end -%>
|
|
|
|
<% end -%>
|
|
|
|
|
2011-06-07 00:25:04 +02:00
|
|
|
include /etc/nginx/conf.d/*.conf;
|
2013-12-01 01:51:31 +01:00
|
|
|
include <%= scope.lookupvar('nginx::params::nx_conf_dir') %>/sites-enabled/*;
|
2013-07-21 02:12:18 +02:00
|
|
|
|
2012-10-01 21:00:18 +02:00
|
|
|
}
|
add support for mail module
See http://wiki.nginx.org/Modules#Mail_modules
Sample Usage:
nginx::resource::mailhost { 'domain1.example':
ensure => present,
auth_http => 'server2.example/cgi-bin/auth',
protocol => 'smtp',
listen_port => 587,
ssl_port => 465,
starttls => 'only',
xclient => 'off',
ssl => 'true',
ssl_cert => '/tmp/server.crt',
ssl_key => '/tmp/server.pem',
}
2013-03-11 14:05:00 +01:00
|
|
|
<% if scope.lookupvar('nginx::mail') %>
|
|
|
|
mail {
|
|
|
|
include /etc/nginx/conf.mail.d/*.conf;
|
|
|
|
}
|
|
|
|
<% end -%>
|