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
- Host: GitHub
- URL: https://github.com/tamoziit/devops-nginx
- Owner: Tamoziit
- License: mit
- Created: 2024-11-24T08:03:35.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-11-24T12:03:40.000Z (11 months ago)
- Last Synced: 2025-02-01T01:41:37.270Z (8 months ago)
- Topics: docker, docker-compose, http-proxy, http-server, https-server, load-balancer, nginx, nginx-docker, nginx-proxy, openssl
- Language: HTML
- Homepage:
- Size: 676 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```