Project

General

Profile

Actions

Pastebin com » History » Revision 1

Revision 1/5 | Next »
digitalspaghetti, 2008-06-15 20:47


Pastebin.com Pastebin Config

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

{{{
$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",
"min-procs" => 1,
"max-procs" => 2,
"bin-copy-environment" => (
"PATH", "SHELL", "USER"
)
)
)
)
compress.cache-dir = "/var/www/cache/pastebin/"
url.rewrite-once = (
"
/pastebin.css" => "$0",
"^/pastebin.js" => "$0",
"^/diff/(\.*)" => "/pastebin.php?diff=$1",
"^/dl/(\.*)" => "/pastebin.php?dl=$1",
"^/(\.*)" => "/pastebin.php?show=$1"
)
}
}}}

Updated by digitalspaghetti almost 16 years ago · 1 revisions