Skip to content

Commit 1ee30c0

Browse files
authored
Merge pull request #3 from githubjakob/base-path
Add BASE_PATH environment variable
2 parents 4fe6759 + 04d2d8c commit 1ee30c0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ see "Example with docker-compose" section for example with env parameters
3333
* `REDIS_USE_TLS` - enable TLS true or false (false by default)
3434
* `REDIS_PASSWORD` - password to connect to redis (no password by default)
3535
* `BULL_PREFIX` - prefix to your bull queue name (bull by default)
36+
* `BASE_PATH` - basePath for bull board, e.g. '/bull-board' ('/' by default)
3637

3738
### Example with docker-compose
3839
```

index.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ const {
99
REDIS_PASSWORD,
1010
REDIS_USE_TLS,
1111
BULL_PREFIX = 'bull',
12-
PORT = 3000
12+
PORT = 3000,
13+
BASE_PATH = '/'
1314
} = process.env;
1415

1516
const redisConfig = {
@@ -24,6 +25,7 @@ const redisConfig = {
2425
const client = redis.createClient(redisConfig.redis);
2526
const prefix = BULL_PREFIX;
2627
const port = PORT;
28+
const basePath = BASE_PATH;
2729

2830
client.KEYS(`${prefix}:*`, (err, keys) => {
2931
const uniqKeys = new Set(keys.map(key => key.replace(/^.+?:(.+?):.+?$/, '$1')));
@@ -34,7 +36,7 @@ client.KEYS(`${prefix}:*`, (err, keys) => {
3436

3537
const app = express();
3638

37-
app.use('/', router);
39+
app.use(`${basePath}`, router);
3840
app.listen(port, () => {
39-
console.log(`bull-board listening on port ${port}!`);
41+
console.log(`bull-board listening on port ${port} on basePath "${basePath}"!`);
4042
});

0 commit comments

Comments
 (0)