Thanks for replay,
Finally thats worked .. (believe or not

) )
Just share w/u my exp..
I did 2 thinks :
##################################################
<CODE>
1. Added module that support envs:
Should exists: /usr/lib64/apache2-prefork/mod_env.so
vim /etc/sysconfig/apache2
APACHE_MODULES=".. .. .. env .. .."
:wq
vim /etc/apache2/sysconfig.d/loadmodule.conf
LoadModule env_module /usr/lib64/apache2-prefork/mod_env.so
:wq
2. Added directive and fixed syntax , env vars should be enclosed by curly brackets :
vim /etc/apache2/httpd.conf
PassEnv PATH_TO_MY_LOCAL_CONFIG <== (directive to provide env var)
Include ${PATH_TO_MY_LOCAL_CONFIG} <== (should be in curly brackets)
:wq
</CODE>
####################################################
Now after starting apache2ctl its loaded all setings that coming
from file refered by $PATH_TO_MY_LOCAL_CONFIG
Thats good feature, now I can conditionally define config by changing shell var without touching http.conf it self.
Thanks.
~