Where I can find passport keys in Laravel?
The default path is storage folder.
There are two files with the following names:
oauth-private.key
oauth-public.key
Laravel version: 5.8
When reading the source code I find it gets its path from $keyPath
. Which can be set with loadKeysFrom($path)
. or uses the default location from storage_path()
. So this is storage
by default.