Lighttpd with mysql and php (LLMP)
From NAS-Central Buffalo - The Linkstation Wiki
(Difference between revisions)
m (→Lighttpd with php and mysql (LLMP)) |
m |
||
| Line 1: | Line 1: | ||
| - | {{Articles|Debian}} | + | {{Articles|Debian|Mediaserver}} |
= Lighttpd with php and mysql (LLMP)= | = Lighttpd with php and mysql (LLMP)= | ||
Revision as of 02:12, 15 September 2006
Contents |
Lighttpd with php and mysql (LLMP)
LLMP instead of LAMP (Apache w/ PHP and MySQL Support (MIPSel), Apache HTTP server, installing)
apt-get install lighttpd php5-dev php5-cgi php5-sqlite php5-mysql mysql-client mysql-server
Enable cgi and fast-cgi for php usage
Setup vhost for 2 urls in lighttpd.conf
Default location:
server.document-root "/media/www/"
Add this too:
$HTTP["host"] =~ "(^|\.)myhost1\.homelinux\.com$" {
server.document-root = "/media/www/myhost1"
server.errorlog = "/var/log/lighttpd/myhost1/error.log"
}
$HTTP["host"] =~ "(^|\.)myhost2\.hello\.com$" {
server.document-root = "/media/www/myhost2"
server.errorlog = "/var/log/lighttpd/myhost2/error.log"
}
Enable url mod_rewrite in lighttpd.conf
Php
Plug and play ! Nothing to do !
Mysql
mysqladmin -u root password 'mypass'

