This site can’t provide a secure connection

Here is the server.js file.

module.exports = ({ env }) => ({
  host: env('HOST', '0.0.0.0'),
  port: env.int('PORT', 8000),
  app: {
    keys: env.array('APP_KEYS'),
  },
});