Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add references #115

Merged
merged 2 commits into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading