Advertisement
wingman007

vhost with ports

Aug 8th, 2013
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.39 KB | None | 0 0
  1. # vhost Apache configuration for Fmi. URL: http://localhost:10118/
  2. Listen 10118
  3. <VirtualHost *:10118>
  4.     DocumentRoot "C:\projects\fmi\public"
  5.     <Directory "C:\projects\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