README.txt 892 B

12345678910111213141516171819202122232425262728293031
  1. README
  2. ======
  3. This directory should be used to place project specfic documentation including
  4. but not limited to project notes, generated API/phpdoc documentation, or
  5. manual files generated or hand written. Ideally, this directory would remain
  6. in your development environment only and should not be deployed with your
  7. application to it's final production location.
  8. Setting Up Your VHOST
  9. =====================
  10. The following is a sample VHOST you might want to consider for your project.
  11. <VirtualHost *:80>
  12. DocumentRoot "/home/naomiaro/airtime/public"
  13. ServerName airtime.local
  14. # This should be omitted in the production environment
  15. SetEnv APPLICATION_ENV development
  16. <Directory "/home/naomiaro/airtime/public">
  17. Options Indexes MultiViews FollowSymLinks
  18. AllowOverride All
  19. Order allow,deny
  20. Allow from all
  21. </Directory>
  22. </VirtualHost>