Skip to content

Commit

Permalink
Update METABASE_SITE_URL to use HTTPS
Browse files Browse the repository at this point in the history
Switching from HTTP to HTTPS enhances security by ensuring data is encrypted during transit. This change aligns with best practices for securing web-based resources.
  • Loading branch information
billettc committed Sep 16, 2024
1 parent 5297961 commit 8febacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/golang-jwt/jwt/v5"
)

const METABASE_SITE_URL = "http://metabase.streamingfast.io"
const METABASE_SITE_URL = "https://metabase.streamingfast.io"

var METABASE_SECRET_KEY = os.Getenv("SECRET_KEY")

Expand Down

0 comments on commit 8febacb

Please sign in to comment.