Extra cache exclusion

main
Bob Mottram 2020-06-06 11:07:47 +01:00
parent dcee624ee4
commit a6e34aa3a6
2 changed files with 10 additions and 0 deletions

View File

@ -136,6 +136,11 @@ And paste the following:
proxy_no_cache 1;
proxy_pass http://localhost:7156;
}
location ~ ^/users/(.*)/(image|banner).png {
expires epoch;
proxy_no_cache 1;
proxy_pass http://localhost:7156;
}
proxy_pass http://localhost:7156;
}
}

View File

@ -1416,6 +1416,11 @@
proxy_no_cache 1;<br>
proxy_pass http://localhost:7156;<br>
}<br>
location ~ ^/users/(.*)/(image|banner).png {<br>
expires epoch;<br>
proxy_no_cache 1;<br>
proxy_pass http://localhost:7156;<br>
}<br>
proxy_pass http://localhost:7156;<br>
}<br>
}