1 May
2012
1 May
'12
6:26 p.m.
Where do I define the environment variable so that it is set no matter how the application is run
Learn to work with your shell. I assume you have bash. # for this command only HTTP_X_FORWARDED_PROTOCOL=https plackup … # for all further commands in this session export HTTP_X_FORWARDED_PROTOCOL=https plackup … For production purposes, edit `/etc/profile.local` or `/etc/profile.d/plackup.sh`. Also see: env(1)