freeCodeCamp/guide/english/nginx/index.md

24 lines
663 B
Markdown
Raw Normal View History

2018-10-19 12:53:51 +00:00
---
title: Installation of Nginx in Ubuntu
---
## Installation of Nginx in Ubuntu
Step 1: Update Apt-Get
As always, we update and upgrade our package manager.
`apt-get update && apt-get upgrade`
Step 2: Install Nginx
One simple command to install Nginx is all that is needed:
`apt-get -y install nginx`
#### More Information
2018-11-19 02:53:57 +00:00
[An Introduction to NGINX for Developers](https://medium.freecodecamp.org/an-introduction-to-nginx-for-developers-62179b6a458f)
[Nginx tutorial](https://www.netguru.co/codestories/nginx-tutorial-basics-concepts)
[Links to top tutorials](https://medium.com/quick-code/top-tutorials-to-learn-nginx-for-web-server-dc8638c48fae)