mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
ee6937f948
- robots.txt prevents crawling of everything but /stable - error.html has a simple meta refresh to the latest stable docs. This will also help crawlers find the right path.
8 lines
283 B
Bash
Executable File
8 lines
283 B
Bash
Executable File
#!/bin/sh
|
|
|
|
aws configure set preview.cloudfront true
|
|
aws --profile mitmproxy \
|
|
s3 cp --acl public-read ./bucketassets/error.html s3://docs.mitmproxy.org/error.html
|
|
aws --profile mitmproxy \
|
|
s3 cp --acl public-read ./bucketassets/robots.txt s3://docs.mitmproxy.org/robots.txt
|