Hi Chris,
Here's an answer list that I hope will help you:
1. Free vs Paid account (
https://secure.erbix.com/pricing )
<your-chosen-subdomain>.
erbix.com domain names are available in all
plans. Premium and Standard accounts can register their custom <your-
domain-name>.com.
2. Site, Domain, App
Site -> a group of domains that serve the same content
Domain -> e.g.
jesdisciple.erbix.com ; To serve different content on
another domain you need to create another Site (domain group)
App -> A group of three elements
a) URL prefix (e.g. /erbix-tutorials; this means your URL for that
app is
http://jesdisciple.erbix.com/erbix-tutorials )
b) JavaScript module (e.g. installedApps/tutorials/main.js); A
JavaScript module (*.js file) that exports a JSGI function (eg: var
myfunc = export.myfunc = function(request) {....}"); details about
exporting and using exported functions later)
c) The JSGI function name exported by the module at b) (e.g. main)
When requesting
http://jesdisciple.erbix.com/erbix-tutorials, Erbix
loads installedApps/tutorials/main.js and calls "main" function to
render the pages.
The function can have any name, not just "main"
3. Public/Private Pages
There are no private URLs on your Erbix subdomain for now. This means
that all URL prefixes to your domain that are listed in the apps list
are publicly accessible.
All your files are private. Files in your account cannot be accessed
publicly in any way unless you serve them with a JSGI function.
You can protect your private URLs/pages by restricting them with a
login layer.
4. Stay tuned, give feedback and make special requests
Very soon the My Account section will change. We are going to
streamline apps and domain management.
We need your feedback in order to improve the usability, add features,
libraries, apps you may need. We are testing and preparing a lot of
new features (email API, http client, libraries, apps, etc). The
feature you need may be released quite soon.
Contact us directly with special requests (help with starting up with
Erbix, free custom domain names, etc).
Thanks,
Mihai Roman, Erbix Team
On Feb 11, 3:17 am, Chris <
jesdisci...@gmail.com> wrote:
> Hi again Mihai,
>
> I'm afraid that wasn't /quite/ my issue, but it was close enough that I
> thought it was when I responded.
>
> All content gets output by JavaScript, okay. But what URL do I use to
> access that content? I have a site with a domain, but accessing that domain
> yields a 404-ish error. I understand from the documentation that domains
> are a paid feature; do I use a subdirectory of the main Erbix site then?
>
> Thanks again,
> Chris
>
> P.S. Thanks for the service; I think it's a great idea.
>
> On Thu, Feb 10, 2011 at 7:06 PM, Chris "Jesdisciple"
> <
jesdisci...@gmail.com>wrote: