You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's not possible to configure the BASE_URL for a domain starting with board, becouse https://board.myproject.com contains /board and the function checkBaseUrl of file run.js do this:
functioncheckBaseUrl(){constbaseUrl=process.env.BASE_URL;if(baseUrl){if(baseUrl.includes('/board')){returnerror('env.BASE_URL must point to the root of the webapp');}
I think that you can change the code to first check if the baseUrl format is not valid, then check why, somethink like this:
functioncheckBaseUrl(){constbaseUrl=process.env.BASE_URL;if(baseUrl&&!baseUrl.match(/^https?:\/\/(\.?\w+)+$/)){if(baseUrl.includes('/board')){returnerror('env.BASE_URL must point to the root of the webapp');}
Steps to Reproduce
try to configure the BASE_URL for a domain starting with board
Environment
Host (Browser/Node version), if applicable: [e.g. MS Edge 18, Chrome 69, Node 10 LTS]
OS: [e.g. Windows 7]
Board version: [e.g. 1.0.0]
The text was updated successfully, but these errors were encountered:
Good catch. I think the check can be further simplified. It should basically prevent users from setting {TASK_BOARD}/board as the BASE_URL over {TASK_BOARD}.
We are running version of wuffle on address that starts with board and we've been able to get around this problem having IP as base_url. However latest version is refusing to start and I'm wondering if it's related to having IP in there. I'm having difficulties to see what is causing the hangup as we're running this in container and not much useful information is coming out.
I'm actually not exactly sure of version since it's been a while since last update (it is latest from that time), but it is from 18 months in the past. Our problem might not be this issue though. But current latest image won't start with the same configurations we had for that one. I'm sorry I can give such limited information. edit. our problem came from wuffle.config.js file where we still had module.exports = { etc. changing to export default { etc.fixed it.
Describe the Bug
It's not possible to configure the BASE_URL for a domain starting with board, becouse
https://board.myproject.com
contains/board
and the functioncheckBaseUrl
of file run.js do this:I think that you can change the code to first check if the baseUrl format is not valid, then check why, somethink like this:
Steps to Reproduce
try to configure the BASE_URL for a domain starting with board
Environment
The text was updated successfully, but these errors were encountered: