Installing WordPress on Ubuntu
http://www.ubuntugeek.com/installing-wordpress-3-0-on-ubuntu-10-04-lucid-lynx.html Installation apt-get install apache2 libapache2-mod-php5 mysql-server php5-mysql php5-curl php5-gd libssh2-php cd /var/www/ wget http://wordpress.org/latest.tar.gz tar -zxvf latest.tar.gz ls -la chown -R www-data:www-data wordpress rm -f latest.zip Apache /etc/apache2/sites-available/wordpress.conf <VirtualHost *:80> ServerAdmin my@email.com ServerName www.example.org ServerAlias example.org DocumentRoot /var/www/wordpress Redirect permanent / https://www.example.org/ ErrorLog /var/log/apache2/example.org-error.log # Possible values include: debug, info, notice, warn, error, crit, … Read more