We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bc79f9 commit 74108cfCopy full SHA for 74108cf
docker.js
@@ -253,7 +253,8 @@ module.exports = {
253
254
// TODO http/https needs to be dynamic (or we just enforce https?)
255
// and port number
256
- const projectURL = `http://${project.name}.${this._options.domain}`
+ const baseURL = new URL(this._app.config.base_url)
257
+ const projectURL = `${baseURL.protocol}//${project.name}.${this._options.domain}`
258
259
const authTokens = await project.refreshAuthTokens()
260
0 commit comments