Skip to content

Commit

Permalink
Allow upstream registry to be on HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
hardillb committed Sep 22, 2023
1 parent 7d3ecb7 commit c4cd79d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ const nodeRedModule = require('node-red-module-parser')

const port = (process.env.PORT || 80)
const listenHost = (process.env.HOST || '0.0.0.0')
const registryHost = (process.env.REGISTRY || 'registry:4873')
const registryHost = (process.env.REGISTRY || 'http:https://registry:4873')
const keyword = (process.env.KEYWORD || "node-red")

const url = "http:https://" + registryHost + "/-/all"
const url = registryHost + "/-/all"

const catalogue = {
"name":"Ben's custom catalogue",
Expand Down

0 comments on commit c4cd79d

Please sign in to comment.