Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Matthew King

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Mac OS X launchd plist to run PHP fcgi

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
http://www.apple.com/DTDs/PropertyList-1.0.dtd >
<plist version='1.0'>
	<dict>
	<key>Label</key><string>com.automatthew.php</string>
	<key>ProgramArguments</key>
	<array>
	        <string>/opt/php/bin/php</string>
	        <string>-b 127.0.0.1:9000</string>
	        <string>-q</string>
	</array>
	<key>EnvironmentVariables</key>
	<dict>
	        <key>PHP_FCGI_CHILDREN</key>
	        <string>4</string>
	</dict>
	<key>Debug</key><false/>
	<key>Disabled</key><false/>
	<key>OnDemand</key><false/>
	<key>RunAtLoad</key><false/>
</dict>
</plist>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS