You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vagrant.conf 647B

12345678910111213141516171819
  1. <VirtualHost *>
  2. ServerName vagrant.oscarcommerce.com
  3. DocumentRoot /vagrant/sites/sandbox/public
  4. CustomLog /var/log/apache2/access.vagrant.oscar.log combined
  5. ErrorLog /var/log/apache2/error.vagrant.oscar.log
  6. AllowEncodedSlashes On
  7. WSGIDaemonProcess oscar processes=2 threads=5 display-name=oscar maximum-requests=10000
  8. WSGIProcessGroup oscar
  9. WSGIApplicationGroup %{GLOBAL}
  10. WSGIScriptAlias / /vagrant/sites/sandbox/deploy/wsgi/vagrant.wsgi
  11. WSGIPassAuthorization On
  12. <Directory /vagrant/sites/sandbox/deploy/wsgi/vagrant.wsgi >
  13. Order deny,allow
  14. Allow from all
  15. </Directory>
  16. </Virtualhost>