From 8ee6bebd306b79702e3f636d2b492660538acc52 Mon Sep 17 00:00:00 2001 From: Pavel Prischepa Date: Wed, 3 Aug 2016 11:31:16 +0700 Subject: [PATCH] Update drupal_upload_progress.conf Urls starting with progress were failing due to this configuration. It'd be nice to use URLs that may start with the word progress. --- apps/drupal/drupal_upload_progress.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/drupal/drupal_upload_progress.conf b/apps/drupal/drupal_upload_progress.conf index 843fb06c..70795dc1 100644 --- a/apps/drupal/drupal_upload_progress.conf +++ b/apps/drupal/drupal_upload_progress.conf @@ -17,7 +17,7 @@ location ~ (?.*)/x-progress-id:(?\d*) { ## Now the above rewrite must be matched by a location that ## activates it and references the above defined upload ## tracking zone. -location ^~ /progress { +location ~ ^/progress$ { upload_progress_json_output; report_uploads uploads; }