Skip to content

Commit d210f94

Browse files
committed
Remove compose version for EBS deployment file
1 parent a9d8c11 commit d210f94

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

.github/workflows/deploy.yml

-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,6 @@ jobs:
171171
ECR_REPOSITORY_API: ${{ secrets.TF_API_REPOSITORY_NAME }}
172172
IMAGE_TAG: ${{ steps.extract_branch.outputs.branch == 'main' && 'production' || steps.extract_branch.outputs.branch }}
173173
run: |
174-
echo "version: '3.3'" > docker-compose.yml
175174
echo "services:" >> docker-compose.yml
176175
echo " client:" >> docker-compose.yml
177176
echo " image: $ECR_REGISTRY/$ECR_REPOSITORY_CLIENT:$IMAGE_TAG" >> docker-compose.yml

infrastructure/source_bundle/proxy/conf.d/application.conf

-14
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,11 @@ upstream client {
99
server {
1010
listen 80;
1111

12-
# client
1312
location / {
1413
proxy_pass http://client;
1514
}
1615

17-
# TODO: Add magic for api
1816
location /cms/ {
1917
proxy_pass http://api;
20-
; rewrite ^/cms/?(.*)$ /$1 break;
21-
; proxy_http_version 1.1;
22-
; proxy_set_header X-Forwarded-Host $host;
23-
; proxy_set_header X-Forwarded-Server $host;
24-
; proxy_set_header X-Real-IP $remote_addr;
25-
; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
26-
; proxy_set_header X-Forwarded-Proto $scheme;
27-
; proxy_set_header Host $http_host;
28-
; proxy_set_header Upgrade $http_upgrade;
29-
; proxy_set_header Connection "Upgrade";
30-
; proxy_pass_request_headers on;
31-
; client_max_body_size 200m;
3218
}
3319
}

0 commit comments

Comments
 (0)