I'm getting the following error every time I do apt-get upgrade:
GPG error: http://nginx.org trusty Release: The following signatures were invalid: KEYEXPIRED 1471427554
I just have the official nginx ppa installed the standard way, by having added the following to my sources.list
deb http://nginx.org/packages/ubuntu/ trusty nginx
deb-src http://nginx.org/packages/ubuntu/ trusty nginx
Is this an error from their end that they will eventually fix hopefully, or is there something I'm going to have to do from my end?
sudo apt-key add nginx_signing.keyand still getting this error? – Thomas Ward Aug 18 '16 at 16:30wget http://nginx.org/keys/nginx_signing.key -O - |sudo apt-key add -will do both steps suggested by @ThomasWard in one small command. – Phillip -Zyan K Lee- Stockmann Aug 18 '16 at 16:34LANG=C sudo apt-key adv --keyserver keys.gnupg.net --recv-keys 1471427554returns the following error:
– Phillip -Zyan K Lee- Stockmann Aug 18 '16 at 16:38Executing: /tmp/tmp.EU8uLKmT5b/gpg.1.sh --keyserver keys.gnupg.net --recv-keys 1471427554 gpg: "1471427554" not a key ID: skippingwget http://nginx.org/keys/nginx_signing.key -O - |sudo apt-key add -commands (@Phillip-ZyanKLee-Stockmann comment) – Thiago Rider Augusto Aug 18 '16 at 16:46date -u -d @1471427554givesWed Aug 17 09:52:34 UTC 2016. – BertD Aug 30 '17 at 23:02