-
-
Save ninadsp/6099125 to your computer and use it in GitHub Desktop.
Code snippets from my blogpost ACAD - How to setup Wordpress on a Ubuntu system (http://ninad.pundaliks.in/blog/2008/08/acad-how-to-setup-wordpress-on-a-ubuntu-system/)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ln -s /var/www/wordpress /path/to/wordpress/directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo vim /etc/apache2/apache.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DATABASE wordpress; | |
GRANT ALL ON wordpress.* TO 'wordpress'@'localhost' IDENTIFIED BY 'wordpress'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Alias /wordpress /path/to/wordpress/directory/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment