I'm trying to install nginx on wheezy using this code in my deployment script:
echo "deb http://nginx.org/packages/debian/ wheezy nginx" | sudo tee -a /etc/apt/sources.list
echo "deb-src http://nginx.org/packages/debian/ wheezy nginx" | sudo tee -a /etc/apt/sources.list
apt-get update
apt-get install -y nginx
However it doesn't seem that wheezy is supported by nginx yet. Can anyone tell me how I am meant to be installing nginx on wheezy please?