clientErrorPage (req, res) {
    const content = fs.readFileSync(path.join(__dirname, '../assets/default_pages/4xx.html'))

    res.html(content.toString(), { statusCode: 404, isRaw: true })
  }