Can we separate IPs by newlines for the client_ip matcher

Hi, I’ve a separate file with a list of IPs whereas each IP is on a newline. I want to import it in a client_ip matcher. Would it work or the ips needs to be on a single line separated by spaces?

ips-file

127.0.0.1
172.16.0.0.1

Caddyfile

@ips client_ip import ips-file

I just want to keep the list of ips that way because there are lots of them. Any help would be appreciated. Thank you

No, that syntax is not supported:

yeah, I figured that out. Also, it seems I can’t use import like that as well.