If you want to access it via a domain name you need to alter the DNS settings, that isn't an apache thing.
The port it listens on is setup within the node application.
Can you more clearly define the issues you are encountering?
Regards,
-Josh
____________________________________
Joshua Kehn | Josh...@gmail.com
http://joshuakehn.com
> --
> You received this message because you are subscribed to the Google Groups "nodejs" group.
> To post to this group, send email to nod...@googlegroups.com.
> To unsubscribe from this group, send email to nodejs+un...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/nodejs?hl=en.
>
Thanks
Tiago Paiva
Sent from my iPhone
> --
> You received this message because you are subscribed to the Google
> Groups "nodejs" group.
> To post to this group, send email to nod...@googlegroups.com.
> To unsubscribe from this group, send email to nodejs+un...@googlegroups.com
Do you have node installed on your server? Do you have ssh access?
I would definitely recommend setting up the sample server (the one on the nodejs website). Do you need help with the actual ssh part and the commands to type?
I an just trying to get a feel for where you are so I can give some more concrete advise.
Terry Riegel
> To post to this group, send email to nod...@googlegroups.com.
> To unsubscribe from this group, send email to nodejs+un...@googlegroups.com.
I'll tell you deploying node apps is the same as deploying ruby apps (except there is nothing like passenger for node). Ruby apps can serve themselves using thin, mongrel, webrick, etc... Node apps can serve themselves using node! The difference is that node is much faster and more capable. You can serve static assets with node directly if you want. It's fast enough. Don't do that with any of the ruby servers except for local dev servers.
Like others have said, the only reason to put node behind a reverse proxy is to support virtual hosting. That's where a front program takes the http request to an ip address and port, peeks at the "Host" http header and forwards/proxies the request to another server on another port of a unix socket. That's exactly what passenger does for you, and in the ruby world is the only sane way to deploy production apps.
Now things get tricky if you want to support new technologies like websockets or take advantage of node's super high efficiency with high concurrency. Then if you use a reverse proxy, you're running through two servers and are limited by the smallest subset of their two capabilities. Nginx and Apache don't handle high currency as well as node (especially apache) And most http reverse proxies don't support the newest websocket protocol since it's not really http.
My favorite setup, and I recommend it for any production apps, is to get a unique IP address per node app. Then you can run your node apps directly on port 80 and skip all the reverse proxy mess and still have different domains on the same box.
I hope this clears things up a little.
Like others have said, the only reason to put node behind a reverse proxy is to support virtual hosting.
Thanks Tim for some explanation. Now, if the virtual hosting is only
for different node apps: then is it still advisable to use nginx ? or
just use multiple node instances with different ports for each app ? Is
that possible ? Any examples ?
If just running Node (no nginx) is it still advisable to combine with
something like Monit to keep it running ?
Finally, what is the advantage of running with web sockets instead of
http.server ? If we are only using Node should we really be using web
sockets (I don't think we need ssl at this point). If so are there any
examples using sockets ?
I know that we seldom see ports in URLs these days but I don't think
it's a big deal to use them. A decade ago we seldom saw 3rd level
domains in URLs either (except for www) and now everyone uses 3rd
level domains and even 4th level domains.
Sincerely,
Kenneth Grome
Don't forget that using a non-80 port will break all the proxies that only allow "web traffic" (eg: corporate proxies).
Sincerely,
Kenneth Grome
This is a non-issue for me because my app is targeted to individuals
not corporate users. Be that as it may, what about SSL port 443?
--
No one should ever see the websocket port though. It's only viewable in the source.
My visitors will remember my domain name for sure, but they are never
expected to access my node site without first visiting a page on my
main site.
Sincerely,
Kenneth Grome
Tiago Paiva
Sent from my iPhone
No dia 2010/09/15, às 19:00, Timothy Caswell <t...@creationix.com>
escreveu:
I'm just getting into node.js and I haven't been able to find any
guides on how to actually setup a node.js server on a linux server, in
my case a slicehost slice. I'm no sysadmin expert, I just used
passenger/apache and the guides on Slicehost to get my rails apps up
and running. So how would I get an example node.js app running and
available on a subdomain, accessible from the web? Is this done in
apache? Or are there other ways to get subdomains or domains to
listen to port 8000. I just want to get an example up and running
somewhere other than my local machine. Big time noob here, some
guidance would be very appreciated.
--
--
Job Board: http://jobs.nodejs.org/
Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nod...@googlegroups.com
To unsubscribe from this group, send email to
nodejs+un...@googlegroups.com
For more options, visit this group at
You received this message because you are subscribed to the Google Groups "nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nodejs+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.