Created
November 2, 2012 23:16
-
-
Save jeena/4004951 to your computer and use it in GitHub Desktop.
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
<VirtualHost *:80> | |
ServerName tent.jeena.net | |
ServerAdmin [email protected] | |
DocumentRoot /home/jeena/tent/tentd-admin/public | |
SetEnv RACK_ENV "development" | |
SetEnv DATABASE_URL "postgres://password:jeena@localhost/jeena_tent_server" | |
SetEnv ADMIN_USERNAME "jeena" | |
SetEnv ADMIN_PASSWORD "password" | |
<Directory "/home/jeena/tent/tentd-admin/public"> | |
AllowOverride All | |
Options -FollowSymlinks +SymLinksIfOwnerMatch +ExecCGI | |
Order allow,deny | |
Allow from all | |
</Directory> | |
ErrorLog /home/jeena/tent/log/apache-error-log | |
CustomLog /home/jeena/tent/log/apache-access-log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment