Dan-blog tutorial

Hi there. I’ve just been viewing the static webpage tutorial. When I try to view the dan-blog website no browser will allow me to. I get this message:

dan-blog.storj.dev uses an unsupported protocol.

ERR_SSL_VERSION_OR_CIPHER_MISMATCH

Is there something I need to put in place in order to view it?

Hello @vquest,
Welcome to the forum!

I shared your findings with the team. Thanks for sharing!

Right now you cannot see it, because it’s configured to redirect to https, but seems some misconfiguration there.
So, we need to fix it.

Cheers. I’ll keep an eye out for it. And thanks for the welcome.

Hey vquest.

I’ve fixed the site. I originally revoked the access grant because it was leaked on stream which is why it was broken.

I had to make a new access grant and set it up again.

Here’s how I did it. First I created a share for the site with --dns and --tls.

Note: you will need an account with a credit card added (paid account) for tls to work properly.

uplink share --dns dan-blog.storj.dev --not-after=none --tls sj://dan-blog/public 

This gives the dns records required to make it work

=========== DNS INFO =======================                                                                                                                     
Remember to update the $ORIGIN with your domain name. You may also change the $TTL.                                                                                                                            
$ORIGIN example.com.                                                                                                                                                                                           
$TTL    3600                                                                                                                                                                                                   
dan-blog.storj.dev      IN      CNAME   link.storjshare.io.                                                                                                                                                    
txt-dan-blog.storj.dev  IN      TXT     storj-root:dan-blog/public                                                                                                                                             
txt-dan-blog.storj.dev  IN      TXT     storj-access:jxe5i3hemxdibpragyadveacvhva                                                                                                                              
txt-dan-blog.storj.dev  IN      TXT     storj-tls:true     

After updating the dns records with the new linksharing key in storj-access, I also needed to make my videos public again by following the public bucket guide. I restricted my share to have the videos prefix (aka not all of my bucket is public, just anything in videos).

uplink share --url --readonly --disallow-lists --not-after=none sj://dan-blog/videos/

Output from that command

========== GATEWAY CREDENTIALS ===========================================================                                                                                                                     
Access Key ID: jxemnukngyubwdz35ahp5rwrfwla                                                                                                                                                                    
Secret Key   : <redacted>                                                                                                                                           
Endpoint     : https://gateway.storjshare.io                                                                                                                                                                   
Public Access: true       

Then I updated my video element to have the newly generated LINKSHARINGKEY (Access Key ID). Notice the /raw after https://link.storjshare.io, that’s how it can be embedded.

 <video
        controls
        style="width: 100vh"
        src="https://link.storjshare.io/raw/jxemnukngyubwdz35ahp5rwrfwla/dan-blog/videos/global-upload.mov"
      ></video>

Last, I uploaded the new version of the website with the new video links.

uplink cp index.html sj://dan-blog/public/index.html

You can view the site here https://dan-blog.storj.dev/

4 Likes