Advertisement
Guest User

Untitled

a guest
Mar 19th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. /etc/apache2/sites-available/zf2-skeleton
  2.  
  3. <VirtualHost *>
  4. ServerName zf2-skeleton
  5. DocumentRoot [PATH]/zf2-skeleton/public
  6. SetEnv APPLICATION_ENV "development"
  7. <Directory [PATH]/zf2-skeleton/public>
  8. DirectoryIndex index.php
  9. AllowOverride All
  10. Order allow,deny
  11. Allow from all
  12. </Directory>
  13. </VirtualHost>
  14.  
  15.  
  16. #############################################################################################
  17. /etc/apache2/ports.conf
  18.  
  19. NameVirtualHost *
  20. Listen 80
  21.  
  22. <IfModule mod_ssl.c>
  23. Listen 443
  24. </IfModule>
  25.  
  26. <IfModule mod_gnutls.c>
  27. Listen 443
  28. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement