An open API service indexing awesome lists of open source software.

https://github.com/tamoziit/devops-nginx

NGINX concepts exploration
https://github.com/tamoziit/devops-nginx

docker docker-compose http-proxy http-server https-server load-balancer nginx nginx-docker nginx-proxy openssl

Last synced: 7 months ago
JSON representation

NGINX concepts exploration

Awesome Lists containing this project

README

          

# DevOps-NGINX
**NGINX concepts exploration**

* Command to generate SSL certificates using openssl
```bash
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout nginx-selfsigned.key -out nginx-selfsigned.crt
```

* Command to spin up the containers
```bash
docker-compose up --build
```
* Visit https://localhost:443 or http://localhost:8080 to explore the application & see NGINX load balancing in action

* Command to spin down the containers
```bash
docker-compose down
```