diff options
author | Arnar Mar SigurĂ°sson <antab@valka.is> | 2008-10-31 17:22:59 +0000 |
---|---|---|
committer | Arnar Mar SigurĂ°sson <antab@valka.is> | 2008-10-31 17:22:59 +0000 |
commit | 057eca18342c90bb4a5cd550d7968d8019b8000b (patch) | |
tree | 4861a374bc01c7ebb3530ecb0070df4760f36510 /target/device/valka/target_skeleton/etc/lighttpd.conf | |
parent | f972f947d53ffecaf09999bf0a4931d81f13966f (diff) | |
download | buildroot-novena-057eca18342c90bb4a5cd550d7968d8019b8000b.tar.gz buildroot-novena-057eca18342c90bb4a5cd550d7968d8019b8000b.zip |
Update valka target
Diffstat (limited to 'target/device/valka/target_skeleton/etc/lighttpd.conf')
-rw-r--r-- | target/device/valka/target_skeleton/etc/lighttpd.conf | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/target/device/valka/target_skeleton/etc/lighttpd.conf b/target/device/valka/target_skeleton/etc/lighttpd.conf new file mode 100644 index 000000000..14e28ed6f --- /dev/null +++ b/target/device/valka/target_skeleton/etc/lighttpd.conf @@ -0,0 +1,25 @@ +server.document-root = "/valka/web" +server.port = 80 +server.username = "valka" +server.groupname = "valka" + +index-file.names = ( "index.php", "index.html" ) +mimetype.assign = ( + ".html" => "text/html", + ".txt" => "text/plain", + ".js" => "text/css", + ".jpg" => "image/jpeg", + ".png" => "image/png" +) + +server.modules = ( + "mod_fastcgi", + "mod_rewrite" +) + +fastcgi.server = ( + ".php" => (( + "bin-path" => "/usr/bin/php-cgi", + "socket" => "/tmp/php.socket" + )) +) |