Advertisement
Guest User

Untitled

a guest
Mar 29th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <VirtualHost XXXX.XXXX.XXXX.XXXX:80>
  2. .........
  3. <FilesMatch "\.(ttf|otf|eot|woff)$">
  4. <IfModule mod_headers.c>
  5. Header set Access-Control-Allow-Origin "*"
  6. </IfModule>
  7. </FilesMatch>
  8. ....
  9. <LocationMatch "/(WEB-INF|META-INF|storage)/">
  10. #Contrôle d'acces : depend de la version d'Apache (cf ci-dessous)
  11. order allow,deny
  12. deny from all
  13. satisfy all
  14. </LocationMatch>
  15.  
  16.  
  17. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement