Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Did you ensure that you ran apt-get update before attempting the install. The most common reason to see 404 errors when trying to install via apt is if your local package database is out of date.
How did you add Ondřej Surý PHP repository? Did you use a command such as the one below?
sudo add-apt-repository ppa:ondrej/php
After adding his repo you’d need to run apt-get update. You may also want to make sure that you have his signing key installed on your server as the follow suggests that it doesn’t exist:
WARNING: The following packages cannot be authenticated!
You can add his key by running:
apt-key adv --fetch-keys "http://keyserver.ubuntu.com:11371/pks/lookup?op=get&search=0x4F4EA0AAE5267A6C"
I would then run:
apt-get update
… once again.