mirror of
https://github.com/lancachenet/monolithic
synced 2025-02-17 05:18:25 +00:00
7 lines
192 B
Text
7 lines
192 B
Text
|
# Fix for WSUS authroot cab files
|
||
|
location ~* (authrootstl.cab|pinrulesstl.cab|disallowedcertstl.cab)$ {
|
||
|
proxy_cache_bypass 1;
|
||
|
proxy_no_cache 1;
|
||
|
proxy_pass http://$host$request_uri;
|
||
|
}
|