Is it possible to use variables in httpd.conf
Yes, kind of. You can get environment variables substituted in to the config file at start up with the ${ENVVAR} syntax. It’s up to you to figure out how to set those variables before starting up the server. http://httpd.apache.org/docs/2.2/configuring.html#syntax Note that these variables will persist so any scripts in languages like php will be able … Read more