--host 127.0.0.1 - server will listen on the loopback interface and not on the externally accessible interface (network). i.e. will work only on the host machine, and not from anywhere else.
--host 192.168.1.3 - server will listen on the externally accessible interface with the given address. It will be accessible when accessed on this remote address. If the machine multiple network interface, each with different ip, server will be accessible only from the mentioned ip address and not from all the other addresses. since you want to access it from another remote machine, you will have to provide the externally accessible address of the machine to the --host flag so appengine can listen on it. if the address is mentioned as 0.0.0.0 server will listen on all available addresses on the host, so it can be accessed from either within the host or from external systems. Regards Anbarasan On Tue, Jul 28, 2015 at 11:48 AM, Tasos Kallergis <[email protected]> wrote: > So you say that --host 127.0.0.1 is not available, and may be used from > somewhere else? > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/google-appengine. > To view this discussion on the web visit > https://groups.google.com/d/msgid/google-appengine/a6f36b10-e94e-4308-bd81-a6156c6712b5%40googlegroups.com > <https://groups.google.com/d/msgid/google-appengine/a6f36b10-e94e-4308-bd81-a6156c6712b5%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CAD7ySbHw%3D7KTrmoEsrCM6vwffN%2BXQkKPYBu1Wz%2BezMbXaY7P%3Dw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
