I publish this question with an answer so to clarify to new users, why some heredoc syntax would deal with file descriptors; I myself had some trouble understanding it at first.
See for example:
bash << EOF0
command1
<< E0F1
Proudly_Printed_With_Heredoc
EOF1
E0F0
Why should it be something like:
bash /dev/fd/5 5<< 'EOF0'
command1
cat << EOF1 >> /etc/apache2/apache2.conf
Proudly_Printed_With_Heredoc
EOF1
EOF0