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

   1  
   2  <?xml version='1.0' encoding='UTF-8'?>
   3  <!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
   4  http://www.apple.com/DTDs/PropertyList-1.0.dtd >
   5  <plist version='1.0'>
   6  	<dict>
   7  	<key>Label</key><string>com.automatthew.php</string>
   8  	<key>ProgramArguments</key>
   9  	<array>
  10  	        <string>/opt/php/bin/php</string>
  11  	        <string>-b 127.0.0.1:9000</string>
  12  	        <string>-q</string>
  13  	</array>
  14  	<key>EnvironmentVariables</key>
  15  	<dict>
  16  	        <key>PHP_FCGI_CHILDREN</key>
  17  	        <string>4</string>
  18  	</dict>
  19  	<key>Debug</key><false/>
  20  	<key>Disabled</key><false/>
  21  	<key>OnDemand</key><false/>
  22  	<key>RunAtLoad</key><false/>
  23  </dict>
  24  </plist>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS