Guidance for how href is built in Actions->Pages links to original content

Please pardon my stumbling. I am just starting a new adventure learning Piwik, and am sure some of my questions will be quite junior in content.

I have setup a number of websites using the log importer to source data. One of the first things I noticed, is that the anchor for href’s in the piwik reports under Actions->Pages is ‘https://website.name/

As an example, I use the log analytics script to import a log file with a syntax sorta like this:

python ~piwik/misc/log-analytics/import_logs.py --url=http://analytics.example.org/piwik --login=${username} --password=${userpass} --idsite=${siteid} --recorders=${threadcount} --enable-http-errors --enable-http-redirects --enable-static --enable-bots --exclude-path=“${excluded}” --output=${outputlog} ${access_log}

And say in that data, I have a line like:

164.72.999.999 - - [18/Oct/2016:15:29:38 -0700] “GET /images/ghc_teal.gif HTTP/1.1” 200 1242 “http://this.is.fake.data.com/45-awkward-guilty-doggies-that-will-make-your-day/?utm_source=taboola” “Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko”

After importing and archiving/report generation, on the Actions->Pages view, I will find a block for ‘./images/ghc_teal.gif’, that is formed like this:

<tr data-segment-filter="pageUrl==https%3A%2F%2Ffakesite.org%2Fimages%2Fghc_teal.gif" data-url-label="https://fakesite.org/images/ghc_teal.gif" .....

And this table provides me a handy dandy link back to that content… BUT… its tagged HTTPS, not HTTP.

At no place did I instruct piwik that the site should be known as https://fakesite.org/, nor is the log data tagged. It should be http://fakesite.org/. The site is HTTP, not HTTPS. Yes yes, I know this seems such a simple thing, and as such I know the answer is gonna make me smack myself on the forhead. BUT… I cannot seem to find where this is defined. I would have expected this to be easily noted in configs some place along the way. Would anyone be able to guide a newb thru how those links to content are formed and stored when using log analytics?

Thanks
Anjin