Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Ubuntu hosts file (VirtualBox) /etc/hosts
- 127.0.0.1 localhost
- 127.0.0.1 ubuntu
- 192.168.0.77 magento.vm
- // Windows 7 hosts file
- 127.0.0.1 localhost
- 192.168.0.77 magento.vm
- // Virtual Host File in Ubuntu
- // /etc/apache2/sites-available/magento.vm
- <VirtualHost *:80>
- ServerAdmin [email protected]
- ServerName magento.vm
- DocumentRoot /srv/www/magento_dev/public_html
- <Directory /srv/www/magento_dev/public_html/>
- Options Indexes FollowSymlinks MultiViews
- AllowOverride All
- Order allow,deny
- allow from all
- </Directory>
- ErrorLog /srv/www/magento_dev/logs/error.log
- LogLevel warn
- </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement