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 root password when prompted and fill in your own values for user and pass.
Now that… Continue reading


