Hello,
how to modify httpd.conf permanently (in parts!) ?
For each vhost i need to put in some additional two lines of constant code for my online store:
eg:
<VirtualHost xx.xxx.xx.xxx:445>
ServerName xxxxx.de
......
.....
SetEnv MAGE_RUN_CODE "diy_deu"
SetEnv MAGE_RUN_TYPE "store"
....
.....
...
</VirtualHost>
The problem is that the httpd.conf gets permanently updated and overwritten - no option.
I tried to put in the following code in the post virtual host include, did not work:
<VirtualHost xx.xxx.xx.xxx:445>
SetEnv MAGE_RUN_CODE "diy_deu"
SetEnv MAGE_RUN_TYPE "store"
</VirtualHost>
How to manage it?
how to modify httpd.conf permanently (in parts!) ?
For each vhost i need to put in some additional two lines of constant code for my online store:
eg:
<VirtualHost xx.xxx.xx.xxx:445>
ServerName xxxxx.de
......
.....
SetEnv MAGE_RUN_CODE "diy_deu"
SetEnv MAGE_RUN_TYPE "store"
....
.....
...
</VirtualHost>
The problem is that the httpd.conf gets permanently updated and overwritten - no option.
I tried to put in the following code in the post virtual host include, did not work:
<VirtualHost xx.xxx.xx.xxx:445>
SetEnv MAGE_RUN_CODE "diy_deu"
SetEnv MAGE_RUN_TYPE "store"
</VirtualHost>
How to manage it?