MigratingFromApache » History » Revision 22
« Previous |
Revision 22/51
(diff)
| Next »
Anonymous, 2006-04-18 17:06
s/completly/completely
= Migrating from Apache to lighty =
Basic Options{{{
Options +FollowSymLinks
}}}
becomes
{{{
server.follow-symlink = "enable"
}}}
Accesslogs are written by mod_accesslog and support the same options in
{{{
accesslog.format = ...
}}}
as Apache.
If you need logfile rotation use one of two ways:
- [http://iain.cx/src/logrotate/ logrotate] as it is used in debian package
- [http://www.cronolog.org/ cronolog]
=== logrotate ===
If you don't use the debian package copy ./debian/lighttpd.logrotate to /etc/logrotate.d/
logrotate will send lighttpd a SIGHUP when it is time to rotate the logs and lighttpd will reopen the logs accordingly.
=== cronolog ===
With cronolog you pipe the accesslog to a pipe and let a external program handle the logfile writing:
{{{
accesslog.filename = "|/usr/sbin/cronolog /web/logs/%Y/%m/%d/access.log"
}}}
[http://www.lighttpd.net/documentation/rewrite.html mod_rewrite] is more trickier as the idea how it is handled is completely different.
First of all we always match on the full relative request-uri that is submitted by the user. That means we are always using the [QSA] (query string append) flag from [http://httpd.apache.org/docs/mod/mod_rewrite.html mod_rewrite in Apache].
This example is based on a problem from http://dir.onlinesearch.ws/ sent in by dbird@freenode.
{{{RewriteEngine On
RewriteBase /instadir/
RewriteCond %{REQUEST_FILENAME} -d
- Fix trailing slash problem
RewriteRule (.+[/])$ $1/ [R,L] - Do not try to treat the following resources as parameters to index.php
RewriteRule ^index.php.*$ - [L]
RewriteRule ^dmoz.css$ - [L]
RewriteRule ^admin[/]?.*$ - [L]
RewriteRule ^img[/]?.*$ - [L]
RewriteRule ^[/]{0,}(.*)$ index.php?area=browse&cat=$1 [QSA,L]
}}}
These rewrites want to rewrite everything that is not the index.php, dmoz.css, admin-interface or something from the image-directory to a parameter of the index.php page. The base directory for this match is ''/instadir/''.
{{{- for all URLs in /instadir/ that are not index.php, dmoz.css, admin or img, do ...
url.rewrite-once = ( "^/instadir/(?!index.php|dmoz.css|admin|img).*" => "$0",
"^/instadir/([^?]*)(?:\?(.*))?" => "/instadir/index.php?area=browse&cat=$1&$2")
}}}
The conditional is using regex-magic called [http://perlpod.com/5.9.1/pod/perlre.html#Extended%20Patterns zero-width negative look-ahead assertion] and is something from the advanced chapters of your [http://www.oreilly.com/catalog/regex/ regex book].
If you have 2 extensions assigned to the fastcgi handler in Apache like
{{{
AddType fastcgi-php .php .phtml
}}}
then you need two entries in the fastcgi.server config:
{{{
fastcgi.server = ( ".php" => (( "bin-path" => "/my/fastcgi-php",
"socket" => "/path/to/php.socket" )),
".phtml" => (( "socket" => "/path/to/php.socket-0" ))
)
}}}
The first entry will create the php-fcgi process and the second will reuse the same socket.
If you need to use PHP and Python in the same setup, just add two extensions:
{{{
fastcgi.server = ( ".php" => (( "bin-path" => "/my/fastcgi-php",
"socket" => "/path/to/php.socket" )),
".py" => (( "host" => "127.0.0.1", "port" => 3200 ))
)
}}}
For this setup python was spawned externally and is a waiting for requests at port 3200, localhost.
Updated by Anonymous over 18 years ago · 22 revisions