Installing WordPress 2.5.1 on nginx with pretty urls

Getting WordPress set up with pretty urls on nginx is fairly straightforward. First thing we need to do is create a database for WordPress in MySQL and a user for this database. mysql -u root -p CREATE DATABASE wordpress; GRANT ALL PRIVILEGES ON wordpress.* TO "user"@"localhost" IDENTIFIED BY "pass"; FLUSH PRIVILEGES; EXIT Enter your MySQL … Continue reading Installing WordPress 2.5.1 on nginx with pretty urls

MySQL, nginx and PHP on Ubuntu 8.04

The nginx webserver is a lightweight alternative to apache and is perfect for running on a vps where resources are scarce. First we need to install our packages. sudo apt-get install mysql-server mysql-client libmysqlclient15-dev I am using apt-get instead of aptitude here so we don’t get a lot of unwanted dependencies installed. The MySQL install … Continue reading MySQL, nginx and PHP on Ubuntu 8.04