You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@milagro.apache.org by sm...@apache.org on 2019/08/29 14:35:56 UTC

[incubator-milagro-dta] 01/01: set default cors allow to *

This is an automated email from the ASF dual-hosted git repository.

smihaylov pushed a commit to branch default_cors
in repository https://gitbox.apache.org/repos/asf/incubator-milagro-dta.git

commit c564d27f51a72e7305f9fbbdfeb66228b1f4e0de
Author: Stanislav Mihaylov <sm...@gmail.com>
AuthorDate: Thu Aug 29 17:35:41 2019 +0300

    set default cors allow to *
---
 pkg/config/default.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/config/default.go b/pkg/config/default.go
index 80f92cf..2bc05e7 100644
--- a/pkg/config/default.go
+++ b/pkg/config/default.go
@@ -39,7 +39,7 @@ func defaultHTTPConfig() HTTPConfig {
 		OIDCProvider:  "",
 		OIDCClientID:  "",
 		OIDCClientKey: "",
-		CorsAllow:     "http://localhost:5556",
+		CorsAllow:     "*",
 	}
 }