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: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -260,8 +260,8 @@ while ($task = get_next_ready_task()) {
260
260
|_spx.http_enabled_|`0`|_PHP_INI_SYSTEM_| Whether to enable web UI and HTTP request profiling. |
261
261
|_spx.http_key_||_PHP_INI_SYSTEM_| The secret key used for authentication (see [security concern](#security-concern) for more details). You can use the following command to generate a 16 bytes random key as an hex string: `openssl rand -hex 16`. |
262
262
|_spx.http_ip_var_|`REMOTE_ADDR`|_PHP_INI_SYSTEM_| The `$_SERVER` key holding the client IP address used for authentication (see [security concern](#security-concern) for more details). Overriding the default value is required when your application is behind a reverse proxy. |
263
-
|_spx.http_trusted_proxies_|`127.0.0.1`|_PHP_INI_SYSTEM_| The trusted proxy list as a comma separated list of IP addresses. This setting is ignored when `spx.http_ip_var`'s value is `REMOTE_ADDR`. |
264
-
|_spx.http_ip_whitelist_||_PHP_INI_SYSTEM_| The IP address white list used for authentication as a comma separated list of IP addresses, use `*` to allow all IP addresses. |
263
+
|_spx.http_trusted_proxies_|`127.0.0.1`|_PHP_INI_SYSTEM_| The trusted proxy list as a comma separated list of IP addresses<b>*</b>. This setting is ignored when `spx.http_ip_var`'s value is `REMOTE_ADDR`. |
264
+
|_spx.http_ip_whitelist_||_PHP_INI_SYSTEM_| The IP address white list used for authentication as a comma separated list of IP addresses<b>*</b>. |
265
265
|_spx.http_ui_assets_dir_|`/usr/local/share/misc/php-spx/assets/web-ui`|_PHP_INI_SYSTEM_| The directory where the [web UI](#web-ui) files are installed. In most cases you do not have to change it. |
266
266
|_spx.http_profiling_enabled_|_NULL_|_PHP_INI_SYSTEM_| The INI level counterpart of the `SPX_ENABLED` parameter, for HTTP requests only. See [here for more details](#available-parameters). |
267
267
|_spx.http_profiling_auto_start_|_NULL_|_PHP_INI_SYSTEM_| The INI level counterpart of the `SPX_AUTO_START` parameter, for HTTP requests only. See [here for more details](#available-parameters). |
@@ -270,6 +270,7 @@ while ($task = get_next_ready_task()) {
270
270
|_spx.http_profiling_depth_|_NULL_|_PHP_INI_SYSTEM_| The INI level counterpart of the `SPX_DEPTH` parameter, for HTTP requests only. See [here for more details](#available-parameters). |
271
271
|_spx.http_profiling_metrics_|_NULL_|_PHP_INI_SYSTEM_| The INI level counterpart of the `SPX_METRICS` parameter, for HTTP requests only. See [here for more details](#available-parameters). |
272
272
273
+
_\*: `*` (match all) and subnet masks (e.g. `192.168.1.0/24`) are supported._
0 commit comments