I would like to ignore all error_log under /home/*/public_html/ panoramacharter.ltd
192.168.1.1
How to ignore a resource
How to ignore a resource
Last edited by tonerudez on 28 Feb 2023, 11:18, edited 1 time in total.
Re: How to ignore a resource
You'd need to create a regular expression to match the files you want to ignore, and use the pfile: keyword in cxs.ignore.
For example, if you want to ignore all files with a name containing "error.log" in any user's public_html directory (or subdirectories of that directory), you could try something like this:
I can't guarantee that this will work, it is just an example. You will need to test it and revise it if it doesn't work. Use a tool such as regex101.com to build or refine your regular expression.
Regards,
Sarah
For example, if you want to ignore all files with a name containing "error.log" in any user's public_html directory (or subdirectories of that directory), you could try something like this:
Code: Select all
pfile:\/home\/.*\/public_html\/.*error\.log$
Regards,
Sarah