Skip to content

Commit 408c774

Browse files
authored
Fix bulk download path in Nginx configuration (#202)
1 parent 4ddb9d3 commit 408c774

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Web Bulkdownload Locations
22

3-
location ~* ^/bulkdownload/static/(.*)$ {
3+
location ~* ^/bulk-download/static/(.*)$ {
44
expires 1y;
55
access_log off;
66
proxy_set_header x-target "web-bulkdownload";
7-
proxy_pass $ups_web_bulkdownload/bulkdownload/static/$1$is_args$args;
7+
proxy_pass $ups_web_bulkdownload/bulk-download/static/$1$is_args$args;
88
}
9-
location ~* ^/bulkdownload/(.*)$ {
9+
location ~* ^/bulk-download/(.*)$ {
1010
proxy_set_header Host $host;
1111
proxy_intercept_errors off;
1212
proxy_set_header x-target "web-bulkdownload";
13-
proxy_pass $ups_web_bulkdownload/bulkdownload/$1$is_args$args;
13+
proxy_pass $ups_web_bulkdownload/bulk-download/$1$is_args$args;
1414
}
1515

0 commit comments

Comments
 (0)