I'm trying to add: Include /etc/apache2/custom.d/globalblacklist.conf
Inside httpd.conf
This is impossible to do.
After rebuilding the file. The include gets deleted.
If i put the the file here: /etc/apache2/conf.d/userdata/ssl/2_4/cowboy/cowboy.org/globalblacklist.conf
it won't even rebuild because the include happens in the wrong place (right before closing virtualhost).
So please, how to achieve the change showed on the code section and make it permanently after rebuild?
Inside httpd.conf
Code:
<IfModule mod_include.c>
<Directory "/home/cowboy/public_html">
SSILegacyExprParser On
Include /etc/apache2/custom.d/globalblacklist.conf
</Directory>
</IfModule>
After rebuilding the file. The include gets deleted.
If i put the the file here: /etc/apache2/conf.d/userdata/ssl/2_4/cowboy/cowboy.org/globalblacklist.conf
it won't even rebuild because the include happens in the wrong place (right before closing virtualhost).
So please, how to achieve the change showed on the code section and make it permanently after rebuild?