I need some assistance. I am currently deploying a Ruby on Rails application to a DigitalOcean droplet using Capistrano and Ubuntu 24.04 (Noble Numbat). I'm following Chris Oliver's guide from GoRails here
The issue arises when I attempt to install Nginx and Passenger. When I enter the following command:
sudo sh -c 'echo deb https://oss-binaries.phusionpassenger.com/apt/passenger $(lsb_release -cs) main > /etc/apt/sources.list.d/passenger.list'
I receive this error in the console:
E: The repository 'https://oss-binaries.phusionpassenger.com/apt/passenger noble Release' does not have a Release file.
However, if I set up a new server with a different version of Ubuntu, such as 20.04 (Focal Fossa), everything works fine. Has there been a change that I need to be aware of for Ubuntu 24.04? Any guidance would be greatly appreciated.