Advertisement
rdsedmundo

httpd.conf virtualhost

Jun 15th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. NameVirtualHost *:80
  2.  
  3. <VirtualHost *:80>
  4. DocumentRoot "pathto"
  5. ServerName blog.com.br
  6.  
  7. SetEnv APPLICATION_ENV development
  8.  
  9. <Directory "pathto">
  10. Options Indexes FollowSymLinks Includes ExecCGI
  11. AllowOverride All
  12. Order allow,deny
  13. Allow from all
  14. </Directory>
  15.  
  16. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement