in reply to Re: how to access apache environment variables
in thread how to access apache environment variables

If you're on posix , fire up a terminal and type 'set'

Not exactly...

set is a shell function, and prints out shell variables. That may or may not include environmental variables, and may or may not include others. C shell for instance doesn't include env variables at all, only shell variables. Bourne shell does, but also includes other shell variables that aren't in the environment.

printenv or env is probably the better choice.