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
The default php-fpm config allows access to from all connections/clients.
If this value is left blank, connections will be accepted from any ip address
We should consider an option to limit the connection to only specific clients. The pfp-fpm configuration has the option listen.allowed_clients that takes multiple IP addresses separated by commas (e.g. 10.0.0.1 and 10.0.0.3).
Since we cannot hard code an IP address we should expose an environment variable (e.g. PHP_FPM_ALLOWED_CLIENTS) in the configuration file to allow users to customize the allowed clients. Perhaps the default should be 127.0.0.1 for security purposes?
The text was updated successfully, but these errors were encountered:
Description
The default php-fpm config allows access to from all connections/clients.
We should consider an option to limit the connection to only specific clients. The pfp-fpm configuration has the option
listen.allowed_clients
that takes multiple IP addresses separated by commas (e.g.10.0.0.1
and10.0.0.3
).Since we cannot hard code an IP address we should expose an environment variable (e.g.
PHP_FPM_ALLOWED_CLIENTS
) in the configuration file to allow users to customize the allowed clients. Perhaps the default should be127.0.0.1
for security purposes?The text was updated successfully, but these errors were encountered: