Advertisement
Guest User

Untitled

a guest
Mar 13th, 2014
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Ubuntu hosts file (VirtualBox) /etc/hosts
  2. 127.0.0.1 localhost
  3. 127.0.0.1 ubuntu
  4. 192.168.0.77 magento.vm
  5.  
  6. // Windows 7 hosts file
  7. 127.0.0.1 localhost
  8. 192.168.0.77 magento.vm
  9.  
  10. // Virtual Host File in Ubuntu
  11. // /etc/apache2/sites-available/magento.vm
  12. <VirtualHost *:80>
  13. ServerAdmin [email protected]
  14. ServerName magento.vm
  15. DocumentRoot /srv/www/magento_dev/public_html
  16. <Directory /srv/www/magento_dev/public_html/>
  17. Options Indexes FollowSymlinks MultiViews
  18. AllowOverride All
  19. Order allow,deny
  20. allow from all
  21. </Directory>
  22. ErrorLog /srv/www/magento_dev/logs/error.log
  23. LogLevel warn
  24. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement