| 
					
				 | 
			
			
				@@ -3,18 +3,25 @@ user  {{ nginx_user }}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 error_log  {{ nginx_error_log }}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 pid        {{ nginx_pidfile }}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% block worker %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 worker_processes  {{ nginx_worker_processes }}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% endblock %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% block events %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 events { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     worker_connections  {{ nginx_worker_connections }}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     multi_accept {{ nginx_multi_accept }}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% endblock %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% if nginx_extra_conf_options %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {{ nginx_extra_conf_options }} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% endif %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 http { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    {% block http_begin %}{% endblock %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% block http_basic %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     include       {{ nginx_mime_file_path }}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     default_type  application/octet-stream; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -39,11 +46,13 @@ http { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% if nginx_proxy_cache_path %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     proxy_cache_path {{ nginx_proxy_cache_path }}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% endif %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% endblock %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% if nginx_extra_http_options %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     {{ nginx_extra_http_options|indent(4, False) }} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% endif %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% block http_upstream %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% for upstream in nginx_upstreams %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     upstream {{ upstream.name }} { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% if upstream.strategy is defined %} 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -57,9 +66,14 @@ http { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% endif %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% endfor %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% endblock %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% block http_includes %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     include {{ nginx_conf_path }}/*.conf; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% if nginx_conf_path != nginx_vhost_path %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     include {{ nginx_vhost_path }}/*; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 {% endif %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+{% endblock %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    {% block http_end %}{% endblock %} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 } 
			 |