GliaStory provides two ways to setup custom domains.
Subdomain
Subfolder
Subdomain
for subdomain, simply setup a CNAME record point to `ghs.gliacloud.com`
Subfolder
for subfolder, you need to setup a reverse proxy (e.g. NGINX) and point to `ghs.gliacloud.com`.
NGINX
location /ampstory {
proxy_pass http://ghs.gliacloud.com
proxy_set_header Host $host;
}
Comments