First implementation of TOFS for: nginx_config, passenger_config, servers_config and snippets Introduced tplroot on modified files as well Fixed GH link of nginx.conf file in docs/TOFS_pattern.rst Fixed test for snippets name pillar
		
			
				
	
	
		
			18 lines
		
	
	
		
			395 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			395 B
		
	
	
	
		
			Desktop File
		
	
	
	
	
	
[Unit]
 | 
						|
Description=The NGINX HTTP and reverse proxy server
 | 
						|
After=syslog.target network.target remote-fs.target nss-lookup.target
 | 
						|
 | 
						|
[Service]
 | 
						|
Type=forking
 | 
						|
PIDFile=/run/nginx.pid
 | 
						|
ExecStartPre=/usr/sbin/nginx -t
 | 
						|
ExecStart=/usr/sbin/nginx
 | 
						|
ExecReload=/usr/sbin/nginx -s reload
 | 
						|
ExecStop=/bin/kill -s QUIT $MAINPID
 | 
						|
Restart=on-failure
 | 
						|
RestartSec=10s
 | 
						|
PrivateTmp=true
 | 
						|
 | 
						|
[Install]
 | 
						|
WantedBy=multi-user.target
 |