Skip to content

Commit 05d9d1f

Browse files
committed
feat: Apply review suggestions
1 parent ba75f4d commit 05d9d1f

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

content/docs/guides/reverse-proxy.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@ server {
1818
proxy_pass http://127.0.0.1:8080;
1919
proxy_http_version 1.1;
2020
21-
proxy_set_header Host $host;
21+
proxy_set_header X-Forwarded-Host $host;
2222
proxy_set_header X-Real-IP $remote_addr;
2323
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2424
proxy_set_header X-Forwarded-Proto $scheme;
25+
proxy_set_header X-Forwarded-Port $server_port;
2526
2627
# Required for WebSocket connections.
2728
proxy_set_header Upgrade $http_upgrade;
28-
proxy_set_header Connection "upgrade";
29+
proxy_set_header Connection $connection_upgrade;
2930
}
3031
}
3132
```

content/docs/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ OrcaCD is a simple GitOps tool for Docker.
1212

1313
It allows you to deploy your applications with Docker using Git as the source of truth. With OrcaCD, you can easily manage your Docker containers and keep them in sync with your Git repository.
1414

15-
This project started as course project for the master's degree in computer science - intelligent systems at the [Westphalian University of Applied Sciences](https://www.w-hs.de/).
16-
The goal of this course is to go through the typical phases of a software project like system design, implementation, testing, and documentation.
15+
This project **initially** started as a course project for the master's degree in computer science - intelligent systems at the [Westphalian University of Applied Sciences](https://www.w-hs.de/).
16+
The goal of this course was to go through the typical phases of a software project like system design, implementation, testing, and documentation. Even though the project was initially created for educational purposes, we decided to make it open source and continue development after the course ended. We believe that OrcaCD can be a useful tool for many developers and we want to share it with the community.
1717

1818
The motivation for this project is based on a prior project for another course where we used [ArgoCD](https://argo-cd.readthedocs.io/en/stable/) for GitOps deployments on Kubernetes. While ArgoCD is a powerful tool, it only supports Kubernetes and is not suitable for everyone. Since most of us already have a VPS with Docker running, we wanted to create a simple GitOps tool that can be used with Docker without the need for Kubernetes.
1919

0 commit comments

Comments
 (0)