lighttpd

  1. Marks-Man

    PDF Lighttpd

    Marks-Man submitted a new resource: Lighttpd - Installing, compiling, configuring, optimizing, and securing this lightning-fast web server Read more about this resource...
  2. Marks-Man

    PDF Lighttpd |

    Total Download Title Lighttpd Sub Title Installing, compiling, configuring, optimizing, and securing this lightning-fast web server Author Andre Bogus Category Computer & Programming Language English Region Tags Web Development ISBN 1847192106 Year 2008 Format PDF Pages...
  3. Marks-Man

    Tutorials Lighttpd configuration to redirect traffic to mobile site

    ## normal version of site $HTTP["host"] == "example.com" { $HTTP["useragent"] =~ "(Android|iPhone|Palm|BlackBerry)" { url.redirect = ( "^/(.*)" => "http://m.example.com/$1" ) } } ## mobile version of site $HTTP["host"] == "m.example.com" { $HTTP["useragent"] !~...
  4. Marks-Man

    Tutorials Blocking HEAD, DELETE, etc. with lighttpd

    Limiting by $HTTP["request-method"] works a treat. Unfortunately when you use url.access-deny lighttpd sets the status code and headers as a fixed thing (403 status), regardless of if you try to add header before or after. End result:
  5. Marks-Man

    Tutorials How to Set Up Multiple Domains SSL Certificates on One IP lighttpd

    ###Multiple SSL $HTTP["scheme"] == "https" { $HTTP["host"] =~ "MainServerIP$" { $SERVER["socket"] == ":443" { ssl.engine = "enable" ssl.pemfile = "/root/newssl/merged.pem" # Combined Certificate ssl.ca-file = "/root/newssl/cert.pem" # Root CA server.document-root = "/var/www/html/work3" #...
  6. Marks-Man

    Tutorials SEO Friendly URL with Lighttpd !!

    Using friendly SEO URLs with lighttpd add the following to url rewrite your configuration: Also make sure to load the mod_rewrite module.
Top