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:55 UTC

[incubator-milagro-dta] branch default_cors created (now c564d27)

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

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


      at c564d27  set default cors allow to *

This branch includes the following new commits:

     new c564d27  set default cors allow to *

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by sm...@apache.org.
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:     "*",
 	}
 }