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
Copy file name to clipboardExpand all lines: docs/options.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ You can also customize the `Caddyfile` by using the following environment variab
60
60
|`CADDY_SERVER_LOG_OPTIONS`| the [server log options block](https://caddyserver.com/docs/caddyfile/directives/log), one per line ||
61
61
|`SERVER_NAME`| the server name or address |`localhost`|
62
62
|`FRANKENPHP_CONFIG`| a list of extra [FrankenPHP directives](https://frankenphp.dev/docs/config/#caddyfile-config), one per line |`import worker.Caddyfile`|
63
-
|`MERCURE_TRANSPORT_URL`| the value passed to the `transport_url` directive |`bolt://mercure.db`|
63
+
|`MERCURE_TRANSPORT_URL`| the value passed to the `transport_url` directive |`bolt:///data/mercure.db`|
64
64
|`MERCURE_PUBLISHER_JWT_KEY`| the JWT key to use for publishers ||
65
65
|`MERCURE_PUBLISHER_JWT_ALG`| the JWT algorithm to use for publishers |`HS256`|
66
66
|`MERCURE_SUBSCRIBER_JWT_KEY`| the JWT key to use for subscribers ||
Copy file name to clipboardExpand all lines: docs/xdebug.md
+14-9Lines changed: 14 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -49,23 +49,28 @@ You can now use the debugger!
49
49
## Debugging with Xdebug and VScode
50
50
51
51
1. Install necessery [PHP extension for VScode](https://marketplace.visualstudio.com/items?itemName=DEVSENSE.phptools-vscode).
52
-
2. Add [debug configuration](https://code.visualstudio.com/docs/editor/debugging#_launch-configurations) into your `.vscode\launch.json` file.
52
+
2. Add [debug configuration](https://code.visualstudio.com/docs/debugtest/debugging-configuration#_launch-configurations) into your `.vscode\launch.json` file.
53
53
54
54
Example:
55
55
56
56
```
57
57
{
58
-
"name": "Listen for Xdebug",
59
-
"type": "php",
60
-
"request": "launch",
61
-
"port": 9003,
62
-
"pathMappings": {
63
-
"/app": "${workspaceFolder}"
64
-
}
58
+
"version": "0.2.0",
59
+
"configurations": [
60
+
{
61
+
"name": "Listen for Xdebug",
62
+
"type": "php",
63
+
"request": "launch",
64
+
"port": 9003,
65
+
"pathMappings": {
66
+
"/app": "${workspaceFolder}"
67
+
}
68
+
}
69
+
]
65
70
}
66
71
```
67
72
68
-
3. Use [Run and Debug](https://code.visualstudio.com/docs/editor/debugging) options and run `Listen for Xdebug` command to listen for upcomming connections with [the **Xdebug extension**](https://xdebug.org/docs/step_debug#browser-extensions) installed and active.
73
+
3. Use [Run and Debug](https://code.visualstudio.com/docs/debugtest/debugging#_start-a-debugging-session) options and run `Listen for Xdebug` command to listen for upcomming connections with [the **Xdebug extension**](https://xdebug.org/docs/step_debug#browser-extensions) installed and active.
0 commit comments