Advertisement
wingman007

vhost Apache configuration for Fmi project on portable XAMPP

Jul 18th, 2013
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. # vhost Apache configuration for Fmi project on portable XAMPP. URL: http://localhost:10118/
  2. Listen 10118
  3. <VirtualHost *:10118>
  4. DocumentRoot "/PortableApps/PortableGit/projects/deleteme/fmi/public"
  5. <Directory "/PortableApps/PortableGit/projects/deleteme/fmi/public">
  6. SetEnv ZF2_PATH /xampp/php/pear/ZF2
  7. SetEnv APPLICATION_ENV development
  8. Order allow,deny
  9. Allow from all
  10. AllowOverride all
  11. Require all granted
  12. </Directory>
  13. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement