diff --git a/_blogs/docker-nginx-reverse-proxy-local-dev.md b/_blogs/docker-nginx-reverse-proxy-local-dev.md index e6bcfef..995b601 100644 --- a/_blogs/docker-nginx-reverse-proxy-local-dev.md +++ b/_blogs/docker-nginx-reverse-proxy-local-dev.md @@ -250,3 +250,14 @@ This request should return the response from one of the backend services. Since By combining Docker and NGINX, you can efficiently replicate a complex backend environment for local development. Docker Compose simplifies managing multi-service setups, while NGINX handles traffic routing and load balancing across services. This architecture not only mirrors production environments but also streamlines testing and scaling. Whether you’re developing microservices or handling a monolithic backend, this approach provides flexibility and scalability. By following these steps, you can create a local environment that closely resembles your production setup, improving both your workflow and your deployment pipeline. + +--- + +## References + +- [Docker](https://www.docker.com/) +- [Docker Docs](https://docs.docker.com/) +- [Docker Compose](https://docs.docker.com/compose/) +- [NGINX](https://www.nginx.com/) +- [NGINX Docs](https://docs.nginx.com/) +- [NGINX Docker Image](https://hub.docker.com/_/nginx/) diff --git a/_blogs/github-codeowners.md b/_blogs/github-codeowners.md index f94db72..77b32a8 100644 --- a/_blogs/github-codeowners.md +++ b/_blogs/github-codeowners.md @@ -230,3 +230,6 @@ The `CODEOWNERS` file is an essential tool for managing large projects with mult By setting up a well-structured `CODEOWNERS` file, you’ll ensure that your repository scales effectively while maintaining high code quality. --- + +## References +- [Official Documentation](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners)