Skip to content

Instantly share code, notes, and snippets.

@jure-ve
Last active October 29, 2016 13:33
Show Gist options
  • Select an option

  • Save jure-ve/09c5d410603043b78bb01a039a83e479 to your computer and use it in GitHub Desktop.

Select an option

Save jure-ve/09c5d410603043b78bb01a039a83e479 to your computer and use it in GitHub Desktop.
Instalación de nginx (última versión) en Ubuntu

En verdad no es nada complicado, solo tienes que:

  1. Agregar el repositorio PPA para nginx en tu sistema Ubuntu
  2. Instalar nginx
$ sudo -s
$ nginx=stable # usa nginx=development para ultima versión de desarrollo 
$ add-apt-repository ppa:nginx/$nginx
$ apt-get update
$ apt-get install nginx

Y listo, despues de esto solo necesitas configurar el sitio predeterminado en nginx.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment