Curl: (7) couldn't connect to host

The main problem seems to be that you have a line break in one of your comments:

# ----------------------------------------------------------- SSL X-Pack
Configuration---------------------------------------------------------------

This means that the second line starts with Configuration, which is not valid config and is not preceded by a #. If you remove the newline between SSL X-Pack and Configuration so they end up on a single line I think you should be fine. Note that you have this happen in two places.

Which is what I said back here 5 days ago: Curl: (7) couldn't connect to host

in 'reader', line 120, column 1:
Configuration------------------- ...
^

There should be no line in the file that begins with Configuration------- (like your 120th line of your file). All lines that have section headers have the # character at the beginning of the line so that the rest of the line is commented out.

2 Likes

ok, thanks. I will modify.

Rob

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.