Spaces is an S3-compatible object storage service that lets you store and serve large amounts of data. Each Space is a bucket for you to store and serve files. The free, built-in Spaces CDN minimizes page load times, improves performance, and reduces bandwidth and infrastructure costs.
Transmit is a macOS-only file transfer utility developed by Panic, Inc.. It handles a wide variety of server types including FTP, SFTP, WebDAV, and S3-compatible servers.
To use Transmit, you need:
Launch the Transmit application by clicking on its icon in the dock, or double-clicking its icon in your Applications folder. Transmit will open and display a window with your local filesystem on the left, and an SFTP connection pane on the right:
Click the Protocol selection menu, highlighted above, then select Amazon S3. This will bring up the form for connecting to an S3-compatible server. Fill in the following details:
digitaloceanspaces.com
. For nyc3, for example, fill in nyc3.digitaloceanspaces.com
for this value.your-access-key
your-secret-key
When all filled out, the connection pane should look similar to this:
Click the green Connect button to connect to Spaces. Transmit will connect, then display a list of your Spaces (if you left the Remote Path option blank):
If you have not yet created a bucket, this will be empty. In the above screenshot we have one bucket called example-name. Let’s use Transmit to make a bucket next.
To create a new bucket with Transmit 5, first move to the root directory where all your buckets are listed. You can do this by clicking the ____.digitaloceanspaces.com
item all the way on the left of the breadcrumb trail at the top of the right-hand pane:
Once you’ve done that, click on the File menu, then choose New Bucket….
A dialog will pop up, asking for a bucket name and location.
Choose any name that fits the guidelines mentioned in the dialog. Leave the default Location value as is. Click Create and your new bucket will be created and added to the list.
digitaloceanspaces.com
, Transmit will give you an error. If this happens, try another name.Next, we’ll navigate into our new bucket and add some files.
Double-click on the folder that represents your bucket. This will open it and list its contents in the right-hand pane:
To upload a file, first navigate through your local filesystem using the left-hand side of the Transmit window. When you’ve found a suitable file to upload (pick something like a JPG or HTML file, so we can test in the browser), click and drag it from the left-hand pane to the right. It will copy over to your bucket and show up in the directory listing on the right-hand side.
You can also drag and drop files directly from the macOS Finder.
Next, we’ll test permissions and learn how to make files publicly accessible.
By default, the files in your buckets are not made available to the public. Let’s find the public URL for a file and see what happens when we try to load it in a web browser. In the right-hand pane, after navigating to your bucket, click once on a file you’d like to view. This will select the file. Then click on the Edit menu and select Copy URL. The URL will be copied to your clipboard. Alternately, you can right-click on the item and select Copy URL from the contextual menu:
Switch over to your browser, paste the URL into the location bar, and hit ENTER
. An AccessDenied error will load:
To remedy this, we need to change the Read permissions on this file. Back in Transmit, with the file still selected, use the File menu to choose Get Info (you could also use a right-click here). Depending on your settings a panel will slide out of the current window, or a new window will open. Either will be labeled Inspector and will have more details about the file, including its size, location, type, and Read and Write permissions:
Use the dropdown menu next to Read: to change the setting from Owner to World, then click the Apply button at the bottom of the Inspector:
Transmit will update the file’s permissions. Return to your browser and reload the URL we tried before. Your file should successfully load.