https://github.com/itzzjb/nginx
Learning nginx basics of webserving and loadbalancing.
https://github.com/itzzjb/nginx
load-balancer nginx reverse-proxy web-server
Last synced: 9 months ago
JSON representation
Learning nginx basics of webserving and loadbalancing.
- Host: GitHub
- URL: https://github.com/itzzjb/nginx
- Owner: itzzjb
- License: mit
- Created: 2024-06-28T03:00:23.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T16:37:05.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T18:27:25.565Z (about 1 year ago)
- Topics: load-balancer, nginx, reverse-proxy, web-server
- Language: HTML
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Running NGINX
```sh
nginx
```
### Reloading NGINX
When ever we done a change to the configurations we need to reload the NGINX server.
Sometimes to see the changes in the browser, you might need to do a hard reload too.
```sh
nginx -s reload
```
---
>[!NOTE]
> Note that we can build an image from the Dockerfile and running that image in 4 containers using docker in ports 8001, 8002, 8003 and 8004.