Advertisement
Guest User

Nginx edit for peterM

a guest
May 23rd, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.32 KB | None | 0 0
  1. location / {
  2.     try_files $uri $uri/ $uri.html $uri/index.html $uri/index.xml index.php?$query_string /index.php?$query_string;
  3. }  
  4.  
  5. location ~* \.(css|js|eot|woff|ttf|woff2|png|ico|gif|svg|jpg|jpeg|webp|avi|mpg|mpeg|mp4|mp3)$ {
  6.     expires 1w;
  7.     try_files $uri index.php?$query_string /index.php?$query_string;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement