invisnik / laravel-steam-auth

Laravel Steam Auth
MIT License
172 stars 67 forks source link

SSL certificate problem: unable to get local issuer certificate #46

Closed burbakov1 closed 7 years ago

burbakov1 commented 7 years ago

Opened site at localhost. Config:

`<?php

return [

/*
 * Redirect URL after login
 */
'redirect_url' => '/login',
/*
 *  API Key (http://steamcommunity.com/dev/apikey)
 */
'api_key' => 'A6B12375521B6D6B5066EFFB2E79F02C',
/*
 * Is using https?
 */
'https' => false

];`

Error screenshot: https://gyazo.com/0c0e987585b6566fed834505382ea468

Rexeh commented 7 years ago

This is a local configuration issue.

Point your php.ini to the local cert on the curlhax website.

burbakov1 commented 7 years ago

Thank's.