Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce the Nginx topic 💡 #626

Merged
merged 3 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,13 @@ We cover a wide range of DevOps topics in our content library, explore them unde
<td>📖 <a href="https://aws.amazon.com/microservices/">aws/microservices</a></td>
<td>✔️ <a href="./topics/microservices/basic/">basic demo</a></td>
</tr>
<tr>
<td><img height="28" src="https://skillicons.dev/icons?i=nginx" /></td>
<td>Nginx</td>
<td><a href="./topics/nginx/">nginx</a></td>
<td>📖 <a href="https://nginx.org/en/docs/">nginx.org/en/docs</a></td>
<td>⏩ <a href="./topics/nginx/basic/">nginx (in-progress)</a></td>
</tr>
<tr>
<td><img width="32" src="https://www.datocms-assets.com/58478/1638283616-packer.svg"></td>
<td>Packer</td>
Expand Down
57 changes: 57 additions & 0 deletions topics/nginx/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
## What is Nginx?

### Overview

- The leading open source automation server, Nginx provides hundreds of plugins to support building, deploying and automating any project.

### Nginx workflow

- None

### Official website documentation of Nginx

- https://nginx.org/

## Prerequisites

- Basic networking, HTTP, Linux

## Installation

### How to install Nginx?

- https://nginx.org/en/docs/install.html

### Install Nginx with Docker

- TODO

## Basics of Nginx

### Nginx getting started

- Begginner's Guide: https://nginx.org/en/docs/beginners_guide.html

### Nginx Hello World

- See: [TODO](./basic/hello-nginx.sh)

## Beyond the Basics

### Hands-On Example

- Check the [advanced/](./advanced/) directory for more Nginx examples.

## More...

### Admin guide

- https://docs.nginx.com/nginx/admin-guide/

### Nginx cheatsheet

- None

### Recommended Books

- None
1 change: 1 addition & 0 deletions topics/nginx/advanced/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TODO
2 changes: 2 additions & 0 deletions topics/nginx/basic/hello-nginx.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
# TODO