Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName localhost
  3. DocumentRoot /var/www/localhost/public
  4.  
  5. SetEnv APPLICATION_ENV "development"
  6.  
  7. <Directory /var/www/localhost/public>
  8. DirectoryIndex index.php
  9. AllowOverride All
  10. Order allow,deny
  11. Allow from all
  12. </Directory>
  13. </VirtualHost>
  14.  
  15.  
  16. mkdir -p application/{controllers,configs,views/{scripts,helpers}} library/{Application,Zend}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement