Setup Allowed Urls
By default, published videos are 'unlisted' meaning they are only viewable on revnite.com at the provided sharable link. If a user wishes to publish this to their public profile, check out the share docs for additional settings.
Published videos are prevented from being embedded on external websites by using the content security policy implemented inside browsers. This means that websites cannot embedded your video on external websites without being enabled.
Update Allowed Urls
Allowed urls can be updated in the video's settings by hitting the settings tab within the video builder.
Url Format
Provide a list of comma separated urls where your videos can be viewable, such as https://revnite.com or http://localhost:3000. An empty list means that the video can only be viewable from our website.
Wildcards
The wildcard character is described as *. You can use the wildcards at the subdomain level (e.g.: https://*.revnite.com). Note that https://revnite.com and https://*.revnite.com are not equivalent. Domain level wildcards such as *.com or https://*.com are not allowed.
Advanced
If coding a website on your local machine, you may be blocked from showing this content on your website locally.
If you run a website using a web framework (i.e. React, Vue, NextJs, Nuxt), add the localhost url and port to the allowed url list. Examples include http://localhost:3000 or http://localhost:8080.
If your site runs in the filesystem on your browser such as running in pure HTML, add file:
to the allowed url list.