I've had it happen a couple of times where the virtual machine has gotten 5-15 minutes behind time and as a result things like OAuth fails because it checks token times.
To get around it I have installed ntp and run
sudo ntpdate time.nist.gov
That seems to solve it. If the homestead box by default had ntp installed and synced the time that would help.
Thanks.
Thanks, I'll get this added to https://github.com/laravel/settler
Looks like default Ubuntu ntp conf should be fine for what we need?
# Use servers from the NTP Pool Project. Approved by Ubuntu Technical Board
# on 2011-02-08 (LP: #104525). See http://www.pool.ntp.org/join.html for
# more information.
pool 0.ubuntu.pool.ntp.org iburst
pool 1.ubuntu.pool.ntp.org iburst
pool 2.ubuntu.pool.ntp.org iburst
pool 3.ubuntu.pool.ntp.org iburst
# Use Ubuntu's ntp server as a fallback.
pool ntp.ubuntu.com
Awesome!
https://stackoverflow.com/a/48059114/470749 and https://askubuntu.com/a/256004/48214 were helpful for me.
Most helpful comment
https://stackoverflow.com/a/48059114/470749 and https://askubuntu.com/a/256004/48214 were helpful for me.