anyone here who can help me with systemd-revsoled configuration?
I am trying to add a local DNS server with a custom port `30053`.
I have added the server in
`usr/local/lib/systemd/resolved.conf.d/myrpoject.conf`

nameserver 127.0.0.1:30053


[Resolve]
DNS=127.0.0.1:30053



and it shows also in
`resolvectl` on top under globals as `127.0.0.1:30053`


Global
Protocols: -LLMNR -mDNS -DNSOverTLS DNSSEC=no/unsupported
resolv.conf mode: stub
Current DNS Server: 127.0.0.1:30053
DNS Servers: 127.0.0.1:30053



but when I do a
`nslookup myproject.local` the domain could not be found.
`nslookup -port=30053 myproject.local 127.0.0.1` is successful.