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… [more]


