mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-08 14:12:27 -05:00
This changeset updates the no_proxy environment variable to allow S3 through. It also updates our error handling connecting to S3. Signed-off-by: Carlo Costino <carlo.costino@gsa.gov>
10 lines
301 B
Bash
10 lines
301 B
Bash
##
|
|
# Cloud Foundry app initialization script
|
|
# https://docs.cloudfoundry.org/devguide/deploy-apps/deploy-app.html#profile
|
|
##
|
|
|
|
export http_proxy=$egress_proxy
|
|
export https_proxy=$egress_proxy
|
|
export NEW_RELIC_PROXY_HOST=$egress_proxy
|
|
export no_proxy="apps.internal,s3-fips.us-gov-west-1.amazonaws.com"
|