Are Apache httpd Define
directive variables intended to be allowed to be overwritten?
For example,
Define SITE example1.com
<VirtualHost *:80>
ServerName ${SITE}
</VirtualHost>
Define SITE example2.com
<VirtualHost *:80>
ServerName ${SITE}
</VirtualHost>
It seems to be working, my SITE
variables are being overwritten, but I won't put it into production if it's not intended to be used this way.
Looking for a canonical answer, if possible. Here's another link to more obscure docs for mod_define.