Instructions and default app configuration should use generic Airflow URLs

Updated the instructions in the README, and the example entries in the
app-config.yml file to use `https://your.airflow.instance.com` instead of
`localhost:8080`.

Signed-off-by: Colton Padden <colton.padden@fastmail.com>
This commit is contained in:
Colton Padden
2021-12-08 10:40:27 -05:00
parent 6039eb507f
commit 89b220ed73
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -98,7 +98,7 @@ proxy:
Authorization: ${ILERT_AUTH_HEADER}
'/airflow':
target: http://localhost:8080/api/v1
target: https://your.airflow.instance.com/api/v1
headers:
Authorization: ${AIRFLOW_BASIC_AUTH_HEADER}
@@ -444,4 +444,4 @@ azureDevOps:
organization: my-company
apacheAirflow:
baseUrl: http://localhost:8080
baseUrl: https://your.airflow.instance.com
+1 -1
View File
@@ -49,7 +49,7 @@ configuration:
```yaml
proxy:
'/airflow':
target: http://localhost:8080/api/v1
target: https://your.airflow.instance.com/api/v1
headers:
Authorization: ${AIRFLOW_BASIC_AUTH_HEADER}
```