From 57a3512dcc6c25e5ddfa8a8280b03c7bcadb94d7 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Wed, 18 Jul 2018 19:44:56 +0200 Subject: [PATCH] mod_http_upload: Adjust default value of 'put_url' Let the default 'put_url' point to the HTTPS listener specified in the new default configuration. --- src/mod_http_upload.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod_http_upload.erl b/src/mod_http_upload.erl index ed29299f6..7e9816cbe 100644 --- a/src/mod_http_upload.erl +++ b/src/mod_http_upload.erl @@ -225,7 +225,7 @@ mod_options(_Host) -> {file_mode, undefined}, {dir_mode, undefined}, {docroot, <<"@HOME@/upload">>}, - {put_url, <<"http://@HOST@:5444">>}, + {put_url, <<"https://@HOST@:5443/upload">>}, {get_url, undefined}, {service_url, undefined}, {external_secret, <<"">>},