Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. ## serve imagecache files directly or redirect to drupal if they do not exist.
  2. location ~* ^.+.(xsl|xml)$ {
  3. access_log off;
  4. expires 1d;
  5. try_files $uri @drupal;
  6. }
  7.  
  8. ## Default location
  9. location / {
  10. try_files $uri $uri/ @drupal;
  11. index index.php;
  12. }
  13.  
  14. location @drupal {
  15. rewrite ^/(.*)$ /index.php?q=$1 last;
  16. }
  17.  
  18. ## Images and static content is treated different
  19. location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$ {
  20. access_log off;
  21. expires 10d;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement