I have a catalyst web application on an Amazon EC2 Linux instance and its content is being served by Apache/FastCGI. Whenever I start a new instance, I need to get the internal IP of the database server and assign it to an environment variable by running this command at startup:
export MYSQL_HOST=$(dig +short ec2-*-*-*-*.compute-1.amazonaws.com);
I have a perl module that should create the database connection after looking up the $MYSQL_HOST environment variable value.
My problem is fairly well documented in that FastCGI cannot directly access these shell environment variables.
I see that you can use PassEnv from Apache mod_env to access environment variables and that you can assign values to FastCGI environment variables using the Apache directive, FcgidInitialEnv (if I hard-code a value in here, I can retrieve it using my Perl module).
My Apache configuration skills are rather basic so I was wondering if someone could recommend a way to tie these together in order for my perl module to access $MYSQL_HOST.
Thanks!