Category Archives: Lighttp

Lighttp

Install Lighttp 1.4 w/ FastCGI on OpenBSD 4.1

Install Packages pkg_add -v ftp://ftp.openbsd.org/pub/OpenBSD/4.1/packages/i386/fcgi-2.4.0p2.tgz pkg_add -v ftp://ftp.openbsd.org/pub/OpenBSD/4.1/packages/i386/lighttpd-1.4.13p2-mysql.tgz Example /etc/lighttpd.conf For PHP $HTTP["host"] == “www.<example>.com” {    server.document-root = “/www/sites/<example>.com/www/”    index-file.names = ( “index.php” )    server.error-handler-404 = “/index.php” fastcgi.server = ( “.php” =>    ( “localhost” =>       (          ”socket” => “/tmp/php-fastcgi.socket”,          ”bin-path” => “/usr/local/bin/php-fcgi”       )    ) ) } Example /etc/lighttpd.conf For Ruby on Rails $HTTP["host"] == “www.<example>.com” {    server.indexfiles [...]
Also posted in 4.1, FastCGI, Rails, Ruby | Leave a comment

301 Redirect With Lighttp 1.4

Direct all clean traffic using an exact match on the host. $HTTP["host"] == “www.<example>.com” {    server.document-root = “/www/sites/<example>.com/www/” } Trap all traffic not directed to the main site (regex non-match), then filter remaining traffic headed to the correct domain with the wrong host (regex) and redirect to the main site. $HTTP["host"] !~ “^(www|mail)\.(<example>\.com)$” [...]
Also posted in Search Engine Optimization | Leave a comment

Install Lighttp 1.4 w/ FastCGI on OpenBSD 4.0

Install Packages pkg_add -v ftp://ftp.openbsd.org/pub/OpenBSD/4.0/packages/i386/fcgi-2.4.0p1.tgz pkg_add -v ftp://ftp.openbsd.org/pub/OpenBSD/4.0/packages/i386/lighttpd-1.4.11-mysql.tgz Example /etc/lighttpd.conf For PHP $HTTP["host"] == “www.<example>.com” {    server.document-root = “/www/sites/<example>.com/www/”    index-file.names = ( “index.php” )    server.error-handler-404 = “/index.php” fastcgi.server = ( “.php” =>    ( “localhost” =>       (          ”socket” => “/tmp/php-fastcgi.socket”,          ”bin-path” => “/usr/local/bin/php-fcgi”       )    ) ) } Example /etc/lighttpd.conf For Ruby on Rails $HTTP["host"] == “www.<example>.com” {    server.indexfiles [...]
Also posted in 4.0, FastCGI, PHP, Rails, Ruby | Leave a comment
  • 4.0 (5)
    4.1 (3)
    CentOS (4)
    FastCGI (4)
    Lighttp (3)
    Linux (2)
    MySQL (5)
    Network (1)
    PHP (2)
    Rails (4)
    Ruby (6)
    S3 (1)
    Search Engine Optimization (1)
    Unix (2)
    VMWare (2)
    Web Services (2)
    WordPress (1)

    WP Cumulus Flash tag cloud by Roy Tanck requires Flash Player 9 or better.

  • Categories

  • Recent Posts