A simple question, I want to copy the content of a config file to the forum, but some words are in angle brackets, how can I show it in my contribution.
An option is to wrap it within <pre>yourcontent</pre>
or [code]yourcode[/code]
tags.
1 Like
Can you point me out an example of code?
1 Like
Thanks to you. I’ve done it with
Here the example:
<IfModule mod_authz_core.c>
# Apache 2.4
Require ip X.X.X.X
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1
Allow from ::1
Allow from X.X.X.X
</IfModule>
1 Like