Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
algarfer committed Apr 30, 2024
2 parents a353c5d + 3f62f49 commit 451c665
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,9 @@ jobs:
GF_SECURITY_ADMIN_USER: ${{ secrets.GF_SECURITY_ADMIN_USER }}
GF_SECURITY_ADMIN_PASSWORD: ${{ secrets.GF_SECURITY_ADMIN_PASSWORD }}
GF_SERVER_SERVE_FROM_SUB_PATH: false
GF_SERVER_DOMAIN: cyt.is-cool.dev
GF_SERVER_HTTP_PORT: 443
GF_SERVER_PROTOCOL: https

docker-push-prometheus:
name: Push prometheus service Docker Image to GitHub Packages
Expand Down
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@ services:
- GF_SECURITY_ADMIN_USER=${GF_SECURITY_ADMIN_USER:-admin}
- GF_SECURITY_ADMIN_PASSWORD=${GF_SECURITY_ADMIN_PASSWORD:-changeme}
- GF_SERVER_SERVE_FROM_SUB_PATH=${GF_SERVER_SERVE_FROM_SUB_PATH:-true}
- GF_SERVER_DOMAIN=${GF_SERVER_DOMAIN:-}
- GF_SERVER_HTTP_PORT=${GF_SERVER_HTTP_PORT:-}
- GF_SERVER_PROTOCOL=${GF_PROTOCOL:-}
ports:
- "9091:9091"
depends_on:
Expand Down
10 changes: 5 additions & 5 deletions proxy/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ server {
ssl_certificate_key /etc/nginx/ssl/private.key;
ssl_trusted_certificate /etc/nginx/ssl/ca_bundle.crt;

location / {
proxy_pass http://webapp:3000;
proxy_set_header X-Forwarded-Proto $scheme;
}

location /api/ {
proxy_pass http://gatewayservice:8000/;
proxy_set_header X-Forwarded-Proto $scheme;
Expand All @@ -35,4 +30,9 @@ server {
location /robots.txt {
alias /usr/share/nginx/html/robots.txt;
}

location / {
proxy_pass http://webapp:3000;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
2 changes: 1 addition & 1 deletion webapp/src/locals/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"social_tooltip_delete": "Delete friend",
"social_tooltip_profile": "View profile",
"social_tooltip_back": "Back",
"social_tooltip_add": "Add friends",
"social_add": "Add friends",
"social_empty_jordi": "Oops, this seems empty ...",
"social_deletemodal_title": "Remove friend",
"social_deletemodal_text": "Are you sure you want to remove % from your friend list?",
Expand Down

0 comments on commit 451c665

Please sign in to comment.