You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							14 lines
						
					
					
						
							371 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							14 lines
						
					
					
						
							371 B
						
					
					
				| #!/sbin/openrc-run | |
| 
 | |
| name="fcgiwrap" | |
| description="Simple server for running CGI applications over FastCGI" | |
| command="/usr/bin/spawn-fcgi" | |
| command_user="nginx:nginx" | |
| command_args="-s /var/run/fcgiwrap.socket -u nginx -g nginx -P /var/run/fcgiwrap.pid /usr/bin/fcgiwrap > /var/log/fcgiwrap.log 2>&1" | |
| 
 | |
| pidfile="/var/run/fcgiwrap.pid" | |
| 
 | |
| depend() { | |
|     use net | |
|     after nginx | |
| }
 | |
| 
 |