Pastebin com » History » Revision 2
« Previous |
Revision 2/5
(diff)
| Next »
hoffie, 2008-06-15 20:56
fixing regexps
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",
"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"
)
}
}}}
Updated by hoffie over 16 years ago · 2 revisions