All Collections
CreatorSuite Help
Deploying Your Microsite
Deploying Your Microsite

Three options to get your microsite deployed

J
Written by Jacob Coby
Updated over a week ago

Once you have your microsite populated with videos and moments it's time to go live! SEEEN gives you three options to deploy:

Use the getseeen.ai Domain

Your SEEEN microsite is automatically configured on the getseeen.ai domain. Simply copy your microsite link from Creator Suite and create a link on your site and you're ready to go.

Want to use your domain instead? Choose one of the options below.

Deploy as a Subdomain

A subdomain hangs off your domain name. SEEEN takes care of adjusting the links for videos and moments to match your site so all of the search equity comes to your site.

  1. Pick your subdomain. We recommend something easy to remember such as video.mysite.com

  2. Have your IT contact create a CNAME from the subdomain to your getseen.ai domain. Example:

    video.mysite.com CNAME mysite.getseeen.com
  3. Let SEEEN know you're ready to go live with your subdomain and we'll do the rest!

Deploy on Your Domain (Advanced)

Customers looking for a full integration into their site can deploy the microsite to their domain by using a reverse proxy. This option requires advanced configuration of your web server. Typically this means you have someone on your team who manages the actual server your site is running on or the hosting provider you are using is willing to work with you. Please reach out to SEEEN if you are unsure if you are able to use this option and we'll help you out.

  1. Pick your site path. We recommend something easy to type such as www.mysite.com/videos

  2. Customize one of the below snippets for Apache or Nginx to proxy your path to the SEEEN microsite. If you have any questions, let SEEEN know what server software you use (typically Apache, Nginx, or IIS) and we can provide you a customized snippet.

  3. Let SEEEN know you're ready to go live with your reverse proxy and we'll do the rest!

Apache Example

<IfModule proxy_module>
SSLProxyEngine on
<Location "/videos">
RequestHeader set Host "mysite.getseeen.ai"
RequestHeader set X-Forwarded-Host "mysite.com"
RequestHeader set X-Forwarded-Prefix "/videos"
ProxyPass "https://mysite.getseeen.ai"
ProxyPassReverse "https://mysite.getseeen.ai"
</Location>
</IfModule>

Nginx Example

location /videos/ {
proxy_set_header Host "mysite.getseeen.ai";
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Prefix "/videos";
proxy_pass https://mysite.getseeen.ai/;
}

Questions?

Need help? Drop us an email and we'll help you out!

Did this answer your question?