Skip to content

Commit 11d1165

Browse files
committedSep 6, 2024
Configure PREFERRED_URL_SCHEME and proxy settings to ensure external urls are created using the right domain and scheme
1 parent 66d7d50 commit 11d1165

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
 

‎.github/workflows/dev_deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313
DEV_TF_PATH: terraform/dev
1414
DO_APP_NAME: dev-${{ github.head_ref }}
1515
HUSHLINE_INFRA_REPO: scidsg/hushline-infra
16-
HUSHLINE_INFRA_REF: main
16+
HUSHLINE_INFRA_REF: dev-server-name
1717

1818
jobs:
1919
deploy:

‎hushline/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
from flask import Flask, flash, redirect, request, session, url_for
77
from flask_migrate import Migrate
8+
from werkzeug.middleware.proxy_fix import ProxyFix
89
from werkzeug.wrappers.response import Response
910

1011
from . import admin, routes, settings
@@ -49,6 +50,11 @@ def create_app() -> Flask:
4950

5051
# Handle the tips domain for profile verification
5152
app.config["SERVER_NAME"] = os.getenv("SERVER_NAME")
53+
app.config["PREFERRED_URL_SCHEME"] = "https" if os.getenv("SERVER_NAME") is not None else "http"
54+
55+
if not app.config["IS_PERSONAL_SERVER"]:
56+
# if were running the managed service, we are behind a proxy
57+
app.wsgi_app = ProxyFix(app.wsgi_app, x_for=2, x_proto=1, x_host=0, x_port=0, x_prefix=0)
5258

5359
# Run migrations
5460
db.init_app(app)

0 commit comments

Comments
 (0)