mirror of
https://github.com/lancachenet/monolithic
synced 2024-11-23 12:33:04 +00:00
425a75c7da
Thanks @gotenxiao Co-authored-by: GotenXiao <gotenxiao@gmail.com>
6 lines
202 B
Text
6 lines
202 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;
|
|
}
|