Last active
December 22, 2015 00:00
-
-
Save wbs75/6385653 to your computer and use it in GitHub Desktop.
Apache-Setup OS X non-server
This file contains hidden or 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
$ cd /etc/apache2/users | |
$ sudo nano username.conf | |
<Directory "/Users/username/Sites/"> | |
Options Indexes MultiViews | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> | |
$ sudo chmod 644 username.conf | |
$ sudo apachectl restart | |
<http://localhost/~username/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment