Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Environment variables and PHP

I have an ubuntu server with a handful of custom environment variables set in /etc/environment as per the ubuntu community recommendation

When I use php from the command line I can use php's getenv() function to access this variables.

Also, if I run phpinfo() from the command line I see all of my variables in the ENVIRONMENT section.

However, when trying to access the same data inside processes being run by php5-fpm this data is not available. All I can see in the ENVIRONMENT section of phpinfo() is:

USER    www-data
HOME    /var/www

I know the command line uses this ini:

/etc/php5/cli/php.ini

And fpm uses:

/etc/php5/fpm/php.ini

I've not managed to find any differences between the two that would explain why the ENV variables are not coming through in both.

Also if run:

sudo su www-data

and then echo the environment variables I am expecting they are indeed available to the www-data user.

What do I need to do to get my environment variables into the php processes run by fpm?

like image 740
sungiant Avatar asked Mar 15 '13 09:03

sungiant


People also ask

What are environmental variables in PHP?

Environment variable definition PHP environment variables allow your scripts to glean certain types of data dynamically from the server. This supports script flexibility in a potentially changing server environment.

How can I get environment variable in PHP?

Using getenv() In addition to using PHP's Superglobals, you can also use getenv() to retrieve an environment variable. If the function is called without an argument, then it returns all available environment variables. If an argument is passed, however, the value of an environment variable with that name is returned.

Where are environment variables stored PHP?

This means the environment variables must be defined in a PHP-FPM configuration file, typically stored in /usr/local/etc/php-fpm.

How variables are used in PHP?

A variable starts with the $ sign, followed by the name of the variable. A variable name must start with a letter or the underscore character. A variable name cannot start with a number. A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )


3 Answers

It turns out that you have to explicitly set the ENV vars in the php-fpm.conf

Here's an example:

[global]
pid = /var/run/php5-fpm.pid
error_log = /var/log/php5-fpm.log

[www]
user = www-data
group = www-data
listen = /var/run/php5-fpm.sock
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
chdir = /
env[MY_ENV_VAR_1] = 'value1'
env[MY_ENV_VAR_2] = 'value2'
like image 157
sungiant Avatar answered Oct 10 '22 06:10

sungiant


1. Setting environment variables automatically in php-fpm.conf

clear_env = no


2. Setting environment variables manually in php-fpm.conf

env[MY_ENV_VAR_1] = 'value1'
env[MY_ENV_VAR_2] = 'value2'


! Both methods are described in php-fpm.conf:

Clear environment in FPM workers Prevents arbitrary environment variables from reaching FPM worker processes by clearing the environment in workers before env vars specified in this pool configuration are added. Setting to "no" will make all environment variables available to PHP code via getenv(), $_ENV and $_SERVER. Default Value: yes

clear_env = no


Pass environment variables like LD_LIBRARY_PATH. All $VARIABLEs are taken from the current environment. Default Value: clean env

env[HOSTNAME] = $HOSTNAME
env[PATH] = /usr/local/bin:/usr/bin:/bin
env[TMP] = /tmp
env[TMPDIR] = /tmp
env[TEMP] = /tmp


I found solution in this github discussion .

like image 43
Andrej Kouril Avatar answered Oct 10 '22 04:10

Andrej Kouril


The problem is when you run the php-fpm. The process not load the environment.
You can load it in the startup script.
My php-fpm is install by apt-get.
So modify the

/etc/init.d/php5-fpm

and add (beware the space between the dot and the slash)

. /etc/profile

and modify the /etc/profile to add

. /home/user/env.sh

In the env.sh. You can export the environment whatever you need.

Then modify

php-fpm.conf

add env[MY_ENV_VAR_1] = 'value1' under the [www] section.
Last. restart the php-fpm. You'll get the environment load by the fpm.

like image 31
Magic Avatar answered Oct 10 '22 06:10

Magic