Não é possível adicionar o repositório de aplicativos mais recente do nginx no ubuntu 14.04

6

O Ubuntu instala o nginx 1.4.6 como padrão. Estou tentando instalar a última versão estável do nginx (1.6.2). Então aqui diz:

you need to add Ubuntu PPA repository to get latest stable version of Nginx on your system. use the below commands to do it.

# Add repository to your system
# magesh@magesh-desktop:~$ add-apt-repository ppa:nginx/$nginx

Mas quando eu tento este comando, ele gera um erro:

Cannot add PPA: 'ppa:nginx/'.
Please check that the PPA name or format is correct.

Como posso resolver isso?

Obrigado

    
por Alex Jolig 08.02.2015 / 19:21

2 respostas

12

Substitua $nginx por stable :

add-apt-repository ppa:nginx/stable
apt-get update
apt-get install nginx
    
por 08.02.2015 / 19:43
0

No diretório /etc/apt/sources.list.d / , crie o arquivo nginx.list com estas linhas:

deb http://nginx.org/packages/ubuntu/ codename nginx
deb-src http://nginx.org/packages/ubuntu/ codename nginx

Aqui codinome é sua versão do Ubuntu (Lucyd Lync, Hardy Heron, etc).

Além disso, você deve adicionar a chave PGP à sua loja e atualizar a lista de pacotes:

http://nginx.org/keys/nginx_signing.key
wget http://nginx.org/keys/nginx_signing.key
apt-key add nginx_signinx.key
apt-get update

Agora você pode instalar a versão estável mais recente do nginx. Todas as informações de nginx.org .

    
por 09.02.2015 / 06:23

Tags