Guest User

Untitled

a guest
Mar 20th, 2018
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <VirtualHost *:8080>
  2. ServerAdmin webmaster@dummy-host.example.com
  3. DocumentRoot "/Users/martndemus/Projects/DockYard/smart-shopping-list/dist"
  4. ServerName localhost
  5.  
  6. <Directory "/Users/martndemus/Projects/DockYard/smart-shopping-list/dist">
  7. AllowOverride All
  8. Require all granted
  9.  
  10. Header unset ETag
  11. FileETag None
  12.  
  13. Header set Cache-Control "no-cache"
  14. Header set Expires "Thu, 01 Jan 1970 00:00:01 GMT"
  15.  
  16. <FilesMatch "-[a-z0-9]{32}.(js|css|png|webmanifest)$">
  17. Header set Cache-Control "max-age=31536000, public"
  18. ExpiresActive On
  19. ExpiresDefault "access plus 1 year"
  20. </FilesMatch>
  21. </Directory>
  22. </VirtualHost>
Add Comment
Please, Sign In to add comment