[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-08-04 Thread Tasos Kallergis
Thank you Nick for your answer, i appreciate it. With Google app engine i have tested the behaviour of host flags, and i think it works fine. That means that when i set the --host to my computer ip i.e(192.168.1.2) or set the host to (0.0.0.0), i have access to that google app engine server from

[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-08-03 Thread Nick (Cloud Platform Support)
Hi Tasos, I think there may be some issue in language between us, and my apologies in advance if I've misunderstood you, since it seems some negations were added / omitted which would help me to make sense of your reply. From what I understand about Apache, and remember this isn't an Apache

[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-08-01 Thread Tasos Kallergis
So Nick you think that when i change from httpd.conf file the ip address to listen to 127.0.0.1, is a valid ip and i may access that service from remote. I.e now i change this file to listen to ip 127.0.0.1. I type from another laptop the internal ip of that xampp server that i changed (i.e

[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-07-31 Thread Nick (Cloud Platform Support)
Hey Tasos, The behaviour of the ip addresses was described quite clearly Anbarasan above. As far as I know, httpd.conf works the same way as well, where 127.0.0.1 is not going to make your server accessible to any other device than localhost. You can read about localhost on wikipedia

[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-07-30 Thread Tasos Kallergis
What do they mean that 127.0.0.1 is a valid ip address and can be used -- 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

[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-07-29 Thread Tasos Kallergis
Ok but i thought that 127.0.0.1 is a valid ip address, and can used. I.e if you know Xampp Server when i go to Xampp Computer and change the httpd.conf file to listen to the ip address 127.0.0.1, is not a problem to connect to this Xampp Server from a remote device i.e (Mobile device). When i

Re: [google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-07-28 Thread Anbarasan Gangadaran
--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.

[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-07-28 Thread 'Mars Lan' via Google App Engine
I'm not sure if I fully understand your question, but 127.0.0.1 is the local loopback interface (https://en.wikipedia.org/wiki/Localhost), so if you want to allow remote connections, you must use either --host ip address or --host 0.0.0.0. On Mon, Jul 27, 2015 at 11:18 PM, Tasos Kallergis

[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-07-28 Thread Tasos Kallergis
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

[google-appengine] Re: Google App Engine Laucher extra flags listen to --host 127.0.0.1

2015-07-27 Thread Mars Lan
The --host flags limits the IP addresses the dev_appserver binds to (https://en.wikipedia.org/wiki/Berkeley_sockets#bind.28.29). Use --host 0.0.0.0 to bind to all available IP addresses on the machine. On Monday, July 27, 2015 at 8:15:40 AM UTC-7, Tasos Kallergis wrote: Hello, i set --host