@@ -10,7 +10,7 @@ You may continue to use the ExAWS SDK as you normally would, but with the
1010endpoint set to Tigris. If you are using Tigris outside of Fly, use the endpoint
1111[ https://t3.storage.dev ] ( https://t3.storage.dev ) . If you are using Tigris from
1212within Fly, use the endpoint
13- [ https://fly .storage.tigris. dev ] ( https://fly .storage.tigris .dev ) .
13+ [ https://t3 .storage.dev ] ( https://t3 .storage.dev ) .
1414
1515This example reads the credentials from the environment variables
1616` AWS_ACCESS_KEY_ID ` and ` AWS_SECRET_ACCESS_KEY ` .
@@ -48,7 +48,7 @@ secret_access_key. In this case we use AWS_ACCESS_KEY_ID and
4848AWS_SECRET_ACCESS_KEY environment variables to store the access keys we will use
4949to access Tigris.
5050
51- Then we configure the S3 API endpoint, which is "fly .storage.tigris .dev".
51+ Then we configure the S3 API endpoint, which is "t3 .storage.dev".
5252
5353### Runtime configuration
5454
@@ -69,7 +69,7 @@ if config_env() == :prod do
6969
7070 config :ex_aws , :s3 ,
7171 scheme: " https://" ,
72- host: " fly .storage.tigris .dev" ,
72+ host: " t3 .storage.dev" ,
7373 region: " auto"
7474
7575end
@@ -96,6 +96,6 @@ You can also use a
9696by replacing the Tigris domain name with your custom domain name:
9797
9898``` elixir
99- branded_url = String .replace (presigned_url, " fly .storage.tigris .dev" , " your-domain.example.com" )
99+ branded_url = String .replace (presigned_url, " t3 .storage.dev" , " your-domain.example.com" )
100100IO .puts (" Presigned URL for GET (custom domain): #{ branded_url } " )
101101```
0 commit comments