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:41:29 UTC

[incubator-milagro-dta] branch develop updated: set default cors allow to * (#16)

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new c8b0ba4  set default cors allow to * (#16)
c8b0ba4 is described below

commit c8b0ba4917778f42dae9e7763f845718d390dc52
Author: Stanislav Mihaylov <sm...@users.noreply.github.com>
AuthorDate: Thu Aug 29 17:41:25 2019 +0300

    set default cors allow to * (#16)
---
 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:     "*",
 	}
 }