Skip to content

Commit

Permalink
fix stripped quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
mishaschwartz committed Oct 15, 2024
1 parent f57046f commit 10e6919
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
7 changes: 3 additions & 4 deletions birdhouse/components/thredds/default.env
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ export THREDDS_DEFAULT_FILE_FILTERS='

export THREDDS_SERVICE_DATA_EXTRA_FILE_FILTERS=''

export THREDDS_DATASET_DATASETSCAN_BODY='
<metadata inherited="true">
export THREDDS_DATASET_DATASETSCAN_BODY="
<metadata inherited='true'>
<serviceName>all</serviceName>
</metadata>

<filter>
${THREDDS_DEFAULT_FILE_FILTERS}
</filter>
'
"

# add any new variables not already in 'VARS' or 'OPTIONAL_VARS' that must be replaced in templates here
VARS="
Expand Down Expand Up @@ -74,5 +74,4 @@ export DELAYED_EVAL="
THREDDS_SERVICE_DATA_LOCATION_ON_HOST
THREDDS_IMAGE
THREDDS_IMAGE_URI
THREDDS_DATASET_DATASETSCAN_BODY
"
12 changes: 6 additions & 6 deletions birdhouse/env.local.example
Original file line number Diff line number Diff line change
Expand Up @@ -501,18 +501,18 @@ export THREDDS_ADDITIONAL_CATALOG=''
# the THREDDS service named "all" (see components/thredds/catalog.xml.template). However this can be customized if desired.
# See the example below which would change the configuration to also serve .h5 and .json files and exclude .md files.
# See the THREDDS documentation for the <datasetScan> element for all configuration options.
#export THREDDS_DATASET_DATASETSCAN_BODY='
# <metadata inherited="true">
#export THREDDS_DATASET_DATASETSCAN_BODY="
# <metadata inherited='true'>
# <serviceName>all</serviceName>
# </metadata>
#
# <filter>
# ${THREDDS_DEFAULT_FILE_FILTERS}
# <include wildcard="*.h5" />
# <include wildcard="*.json" />
# <exclude wildcard="*.md" />
# <include wildcard='*.h5' />
# <include wildcard='*.json' />
# <exclude wildcard='*.md' />
# </filter>
#'
#"

# Files served by THREDDS are considered to either contain data or metadata (or both). The THREDDS Magpie service allows
# us to handle access permissions different for metadata vs. data. Magpie let's users with "browse" permissions access
Expand Down

0 comments on commit 10e6919

Please sign in to comment.