Guest User

Untitled

a guest
Aug 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <VirtualHost *:9090>
  2. DocumentRoot "C:\Zend\Apache2\htdocs\yamv\yamv\public"
  3. ServerName yamv.local
  4.  
  5. # This should be omitted in the production environment
  6. SetEnv APPLICATION_ENV development
  7.  
  8. <Directory "C:\Zend\Apache2\htdocs\yamv\yamv\public">
  9. Options Indexes MultiViews FollowSymLinks
  10. AllowOverride All
  11. Order allow,deny
  12. Allow from all
  13. <Limit GET POST OPTIONS>
  14. Order allow,deny
  15. Allow from all
  16. </Limit>
  17. <Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
  18. Order deny,allow
  19. Deny from all
  20.  
  21. </Limit>
  22. </Directory>
  23. </VirtualHost>
Add Comment
Please, Sign In to add comment