Xojo Cloud

Hi

Before to buy the Xojo Cloud Service i need to know as follow:

How many web apps i can deploy as cgi? How it work exactly?
How many mySql databases comes with the small plan?
The domain name is included? or is just the server address ?

Thanks for the help

Alan

It’s just the server. You’ll have to get a domain and point it yourself.

of apps depends greatly on what your apps do.

MySQL can have as many databases as you want technically.

It all depends on how much RAM you use.

Thanks Grag

So if i have 2 different customers with 2 different web apps they can reach their application with something like this?

http://123245678899.com/customer1
http://123245678899.com/customer2

im correct?

[quote=325384:@Alan Castellana]Thanks Grag

So if i have 2 different customers with 2 different web apps they can reach their application with something like this?

http://123245678899.com/customer1
http://123245678899.com/customer2

im correct?[/quote]
Yes.

Thanks Greg

We setup an index.html that routes subdomains to different apps.

So they can enter http://app1.domain.com and be routed to http://domain.com/app1
http://app2.domain.com will be routed to http://domain.com/app2 and so forth.

I posted and example here:

Here is what we use for our index.html. We use the subdomain to identify different sites. In this case I reroute to https, or if the subdomain is browsertest then I run an app we specifically wrote to test some features of the users browser. Otherwise it would just run a “App-Name” application.

So url http://client.website.com would become https://client.website.com/App-Name/
or
http://browsertest.website.com would become https://browsertest.website.com/browsertest/

This seems to work very well

Hi Stephen

Very nice solution, thank you