VMware Images:
|
Creating Simple Virtual Hosts With mod_mysql_vhost On Lighttpd (Debian Etch)
Creating Simple Virtual Hosts With mod_mysql_vhost On Lighttpd (Debian Etch)Version 1.0 This guide explains how you can use mod_mysql_vhost to create simple virtual hosts on a lighttpd web server on Debian Etch. With mod_mysql_vhost, lighttpd can read the vhost configuration from a MySQL database. Currently, you can store the domain and the document root in the MySQL database which results in very simple virtual hosts. If you need more directives for your vhosts, you'd have to configure them in the global section of lighttpd.conf, which means they'd be valid for all vhosts. Therefore, mod_mysql_vhost is ideal if your vhosts differ only in the domain and document root. I do not issue any guarantee that this will work for you!
1 Installing MySQL 5.0First we install MySQL 5.0 like this: apt-get install mysql-server mysql-client Create a password for the MySQL user root (replace yourrootsqlpassword with the password you want to use): mysqladmin -u root password yourrootsqlpassword Then check with netstat -tap | grep mysql on which addresses MySQL is listening. If the output looks like this: tcp 0 0 localhost.localdo:mysql *:* LISTEN 2713/mysqld which means MySQL is listening on localhost.localdomain only, then you're safe with the password you set before. But if the output looks like this: tcp 0 0 *:mysql *:* LISTEN 2713/mysqld you should set a MySQL password for your hostname (my hostname is server1.example.com here), too, because otherwise anybody can access your database and modify data: mysqladmin -h server1.example.com -u root password yourrootsqlpassword
2 Installing Lighttpd And mod_mysql_vhostYou can install lighttpd (if it's not already installed) and mod_mysql_vhost as follows: apt-get install lighttpd lighttpd-mod-mysql-vhost To enable mod_mysql_vhost, we open /etc/lighttpd/lighttpd.conf and add/enable "mod_mysql_vhost", in the server.modules stanza: vi /etc/lighttpd/lighttpd.conf
Afterwards, we restart lighttpd: /etc/init.d/lighttpd restart
3 Configuring mod_mysql_vhostNow we log in to MySQL... mysql -u root -p ... and create the database lighttpd: CREATE DATABASE lighttpd; Next we create a database user (which we name lighttpd as well) with SELECT privileges for the lighttpd database: GRANT SELECT ON lighttpd.* TO lighttpd@localhost IDENTIFIED BY 'secret'; (Replace secret with a password of your choice.) Then we create the domains table in the lighttpd database and leave MySQL: USE lighttpd; CREATE TABLE domains ( quit; Now we open /etc/lighttpd/lighttpd.conf and add the following mod_mysql_vhost configuration at the end of the file: vi /etc/lighttpd/lighttpd.conf
(Replace secret with the password you've previously set for the lighttpd MySQL user.) Restart lighttpd: /etc/init.d/lighttpd restart Now it's time to configure virtual hosts...
4 Configuring Virtual HostsI will now configure two virtual hosts, one for www.example.com (with the document root /var/www/www.example.com/web) and one for www.example.org (with the document root /var/www/www.example.org/web). First, we create the document roots of both web sites (if they don't already exist): mkdir -p /var/www/www.example.com/web Then we log in to MySQL... mysql -u root -p USE lighttpd; ... and create the vhosts as follows: INSERT INTO domains VALUES ('www.example.com','/var/www/www.example.com/web/'); We can now leave the MySQL shell: quit; That's it, the vhosts are now configured and working, and no lighttpd restart is required. To check if the vhosts are working as expected, we create an index.html file in each document root, one with the string "www.example.com" in it, the other one with the string "www.example.org"... echo "www.example.com" > /var/www/www.example.com/web/index.html and call http://www.example.com and http://www.example.org in a browser. http://www.example.com should show www.example.com, and http://www.example.org should display www.example.org.
5 Links
|






Recent comments
12 hours 45 min ago
13 hours 43 min ago
13 hours 54 min ago
19 hours 59 min ago
22 hours 28 min ago
23 hours 39 min ago
1 day 2 hours ago
1 day 3 hours ago
1 day 5 hours ago
1 day 7 hours ago