Skip to content

Commit 5039c29

Browse files
committed
fix!: remove MERCURE_TRANSPORT_URL env
1 parent 6c1f6f9 commit 5039c29

File tree

2 files changed

+14
-18
lines changed

2 files changed

+14
-18
lines changed

Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ RUN set -eux; \
3434
# https://getcomposer.org/doc/03-cli.md#composer-allow-superuser
3535
ENV COMPOSER_ALLOW_SUPERUSER=1
3636

37-
# Transport to use by Mercure (default to Bolt)
38-
ENV MERCURE_TRANSPORT_URL=bolt:///data/mercure.db
39-
4037
ENV PHP_INI_SCAN_DIR=":$PHP_INI_DIR/app.conf.d"
4138

4239
###> recipes ###

docs/options.md

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -75,21 +75,20 @@ to inject options block, directive or configuration.
7575
7676
<!-- markdownlint-disable MD013 -->
7777

78-
| Environment variable | Description | Default value |
79-
| ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------- |
80-
| `CADDY_GLOBAL_OPTIONS` | the [global options block](https://caddyserver.com/docs/caddyfile/options#global-options), one per line | |
81-
| `CADDY_EXTRA_CONFIG` | the [snippet](https://caddyserver.com/docs/caddyfile/concepts#snippets) or the [named-routes](https://caddyserver.com/docs/caddyfile/concepts#named-routes) options block, one per line | |
82-
| `CADDY_SERVER_EXTRA_DIRECTIVES` | the [`Caddyfile` directives](https://caddyserver.com/docs/caddyfile/concepts#directives) | |
83-
| `CADDY_SERVER_LOG_OPTIONS` | the [server log options block](https://caddyserver.com/docs/caddyfile/directives/log), one per line | |
84-
| `SERVER_NAME` | the server name or address | `localhost` |
85-
| `FRANKENPHP_CONFIG` | a list of extra [FrankenPHP global directives](https://frankenphp.dev/docs/config/#caddyfile-config), one per line | |
86-
| `FRANKENPHP_WORKER_CONFIG` | a list of extra [FrankenPHP worker directives](https://frankenphp.dev/docs/config/#caddyfile-config), one per line | |
87-
| `MERCURE_TRANSPORT_URL` | the value passed to the `transport_url` directive | `bolt:///data/mercure.db` |
88-
| `MERCURE_PUBLISHER_JWT_KEY` | the JWT key to use for publishers | |
89-
| `MERCURE_PUBLISHER_JWT_ALG` | the JWT algorithm to use for publishers | `HS256` |
90-
| `MERCURE_SUBSCRIBER_JWT_KEY` | the JWT key to use for subscribers | |
91-
| `MERCURE_SUBSCRIBER_JWT_ALG` | the JWT algorithm to use for subscribers | `HS256` |
92-
| `MERCURE_EXTRA_DIRECTIVES` | a list of extra [Mercure directives](https://mercure.rocks/docs/hub/config), one per line | |
78+
| Environment variable | Description | Default value |
79+
| ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- |
80+
| `CADDY_GLOBAL_OPTIONS` | the [global options block](https://caddyserver.com/docs/caddyfile/options#global-options), one per line | |
81+
| `CADDY_EXTRA_CONFIG` | the [snippet](https://caddyserver.com/docs/caddyfile/concepts#snippets) or the [named-routes](https://caddyserver.com/docs/caddyfile/concepts#named-routes) options block, one per line | |
82+
| `CADDY_SERVER_EXTRA_DIRECTIVES` | the [`Caddyfile` directives](https://caddyserver.com/docs/caddyfile/concepts#directives) | |
83+
| `CADDY_SERVER_LOG_OPTIONS` | the [server log options block](https://caddyserver.com/docs/caddyfile/directives/log), one per line | |
84+
| `SERVER_NAME` | the server name or address | `localhost` |
85+
| `FRANKENPHP_CONFIG` | a list of extra [FrankenPHP global directives](https://frankenphp.dev/docs/config/#caddyfile-config), one per line | |
86+
| `FRANKENPHP_WORKER_CONFIG` | a list of extra [FrankenPHP worker directives](https://frankenphp.dev/docs/config/#caddyfile-config), one per line | |
87+
| `MERCURE_PUBLISHER_JWT_KEY` | the JWT key to use for publishers | |
88+
| `MERCURE_PUBLISHER_JWT_ALG` | the JWT algorithm to use for publishers | `HS256` |
89+
| `MERCURE_SUBSCRIBER_JWT_KEY` | the JWT key to use for subscribers | |
90+
| `MERCURE_SUBSCRIBER_JWT_ALG` | the JWT algorithm to use for subscribers | `HS256` |
91+
| `MERCURE_EXTRA_DIRECTIVES` | a list of extra [Mercure directives](https://mercure.rocks/docs/hub/config), one per line | |
9392

9493
<!-- markdownlint-enable MD013 -->
9594

0 commit comments

Comments
 (0)