Apache SetEnv with special characters

2.5k Views Asked by At

I'm trying to set an environment variable in Apache using SetEnv in my vhosts.conf file with the following:

SetEnv FACEBOOK_SECRET 13jf93jjdshut7qpm321b1vv5nod973j10
SetEnv DATABASE_URL "postgresql://postgres:sdfesf@localhost:5432/public"

The FACEBOOK_SECRET environment is showing up in php with the genenv() function, but the DATABASE_URL is empty. I'm assuming it's due to the special characters in the connection string, but I don't know if or how to escape those characters. Any ideas?

2

There are 2 best solutions below

0
On

Put the value to set in quotes.

0
On

Try replacing localhost with 127.0.0.1 as it appears apache doesn't like the localhost keyword in the virtualhost configuration block.

SetEnv DATABASE_URL "postgresql://postgres:[email protected]:5432/public"