Drupal + Lighttpd: enabling clean urls (rewriting)

Posted by Patrick on Server Fault See other posts from Server Fault or by Patrick
Published on 2010-12-28T15:05:16Z Indexed on 2010/12/28 15:55 UTC
Read the original article Hit count: 284

Filed under:
|

I'm emulating Ubuntu on my mac, and I use it as a server.

I've installed lighttpd + Drupal and the following configuration section requires a domain name in order to make clean urls to work.

Since I'm using a local server I don't have a domain name and I was wondering how to make it work given the fact the ip of the local machine is usually changing.

thanks

$HTTP["host"] =~ "(^|\.)mywebsite\.com" {
  server.document-root = "/var/www/sites/mywebsite"
  server.errorlog = "/var/log/lighttpd/mywebsite/error.log"
  server.name = "mywebsite.com"
  accesslog.filename = "/var/log/lighttpd/mywebsite/access.log"
  include_shell "./drupal-lua-conf.sh mywebsite.com"

  url.access-deny += ( "~", ".inc", ".engine", ".install", ".info",
       ".module", ".sh", "sql", ".theme",
       ".tpl.php", ".xtmpl", "Entries",
       "Repository", "Root" )


  # "Fix" for Drupal SA-2006-006, requires lighttpd 1.4.13 or above
  # Only serve .php files of the drupal base directory
  $HTTP["url"] =~ "^/.*/.*\.php$" {
      fastcgi.server = ()
      url.access-deny = ("")
  }

  magnet.attract-physical-path-to = ("/etc/lighttpd/drupal-lua-scripts/p-.lua")

}

© Server Fault or respective owner

Related posts about lighttpd

Related posts about drupal