12 lines
165 B
Plaintext
12 lines
165 B
Plaintext
#
|
|
location ~* ^/bx_tmp_download/ {
|
|
internal;
|
|
rewrite /bx_tmp_download/(.+) /.bx_temp/$1 last;
|
|
}
|
|
#
|
|
location ~* ^/.bx_temp/ {
|
|
internal;
|
|
root /opt;
|
|
}
|
|
#
|