Skip to content

Commit

Permalink
Add references (#115)
Browse files Browse the repository at this point in the history
* update link style to be more prominent

* add references
  • Loading branch information
UmairJibran authored Nov 16, 2024
1 parent 6ad5912 commit cb8db43
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
11 changes: 11 additions & 0 deletions _blogs/docker-nginx-reverse-proxy-local-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
3 changes: 3 additions & 0 deletions _blogs/github-codeowners.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions src/styles/markdown-styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}

.markdown a {
color: text-blue-400;
color: #0070f3;
display: inline-block;
position: relative;
font-weight: bold;
Expand All @@ -39,7 +39,7 @@
bottom: 0;
width: 0;
height: 1px;
background-color: rgb(0, 0, 0);
background-color: #0070f3;
transform: translateX(-50%);
transition: width 1s;
}
Expand Down

0 comments on commit cb8db43

Please sign in to comment.