mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bug 1574948 - Preserve the firefox-source-docs
host name. r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D42548 --HG-- extra : moz-landing-system : lando
This commit is contained in:
parent
a9733a6c3b
commit
c63e3dbb3b
@ -77,20 +77,25 @@ def get_s3_keys(s3, bucket):
|
||||
def s3_set_redirects(redirects):
|
||||
|
||||
s3, bucket = create_aws_session()
|
||||
|
||||
configuration = {
|
||||
'IndexDocument': {"Suffix": "index.html"},
|
||||
'RoutingRules': []
|
||||
}
|
||||
|
||||
for path, redirect in redirects.items():
|
||||
configuration['RoutingRules'].append({
|
||||
rule = {
|
||||
'Condition': {
|
||||
"KeyPrefixEquals": path
|
||||
},
|
||||
'Redirect': {
|
||||
"ReplaceKeyPrefixWith": redirect
|
||||
}
|
||||
})
|
||||
},
|
||||
}
|
||||
if os.environ.get('MOZ_SCM_LEVEL') == '3':
|
||||
rule['Redirect']['HostName'] = 'firefox-source-docs.mozilla.org'
|
||||
|
||||
configuration['RoutingRules'].append(rule)
|
||||
|
||||
s3.put_bucket_website(
|
||||
Bucket=bucket,
|
||||
|
Loading…
x
Reference in New Issue
Block a user