Here is my pg_hba.conf entry.
TYPE DATABASE USER ADDRESS METHOD
"local" is for Unix domain socket connections only
local all all trust
However when I try to connect with sql, I get the following error.
sql: FATAL: no pg_hba.conf entry for host "
What am I missing? This works from anywhere once I include the following line.
host all all 0.0.0.0/0 md5
But my intent is only local connection.