Skip to content

Instantly share code, notes, and snippets.

@karlingen
Created April 9, 2014 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karlingen/10274264 to your computer and use it in GitHub Desktop.
Save karlingen/10274264 to your computer and use it in GitHub Desktop.
sugarcrm 7 apache conf virtualhost
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName sugarcrm7.localhost.com
ErrorLog /var/log/apache2/sugarcrm7_error_log
DocumentRoot /home/karlingen/Desktop/public_html/sugarcrm7/
<Directory />
Options FollowSymLinks
AllowOverride all
</Directory>
<Directory /home/karlingen/Desktop/public_html/sugarcrm7/>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from localhost
</Directory>
</VirtualHost>
@karlingen
Copy link
Author

Inside /etc/hosts:
127.0.0.1 sugarcrm7.localhost.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment