Project

General

Profile

Pastebin com » History » Revision 4

Revision 3 (hoffie, 2008-06-15 20:56) → Revision 4/5 (hoffie, 2012-08-11 10:42)

h2. Pastebin.com Pastebin Config 


 This configuration is an easy way to set up a nopaste using the "Pastebin.com":http://pastebin.com pastebin application. 


 <pre> 

 $HTTP["host"] =~ "(^|\.)pastebin.example\.com$" { 
   server.document-root = "/path/tp/pastebin/public_html" 
   accesslog.filename = "/var/log/lighttpd/pastebin.access.log" 
   static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" ) 
   fastcgi.server = ( 
     ".php" => ( 
       "localhost" => ( 
         "bin-path" => "/usr/local/bin/php-cgi", 
         "socket" => "/tmp/php-pastebin.socket", 
         "max-procs" => 2, 
         "bin-copy-environment" => ( 
           "PATH", "SHELL", "USER" 
         ) 
       ) 
     ) 
   ) 
   compress.cache-dir = "/var/www/cache/pastebin/" 
   url.rewrite-once = ( 
		 "^/pastebin\.(css|js)" => "$0", 
		 "^/diff/(.*)" => "/pastebin.php?diff=$1", 
		 "^/dl/(.*)" => "/pastebin.php?dl=$1", 
		 "^/(.*)" => "/pastebin.php?show=$1" 
   ) 
 } 
 </pre>