Re: Accessing Django through ssh tunneling and error to get status

2018-07-16 Thread Melvyn Sopacua
On maandag 16 juli 2018 08:56:06 CEST Dikus Extrange wrote: > Not Found: /http:/127.0.0.1:8000/status > Etc,etc... > > > I wonder why the protocol has only a slash (http:/ rather http://). Could it > be a wrong message? This looks like a wrongly configured status monitor of some sorts, like for

Re: Accessing Django through ssh tunneling and error to get status

2018-07-15 Thread Dikus Extrange
Hi Robert. Thank you for your piece of advice. I tried writting ALLOWED HOSTS = ['*',] And after running the server, it throws the same message: Not Found: /http:/127.0.0.1:8000/status Etc,etc... I wonder why the protocol has only a slash (http:/ rather http://). Could it be a wrong message?

Re: Accessing Django through ssh tunneling and error to get status

2018-07-13 Thread Robert Edward
Hey, uhm I faced a similar problem lately. Try this in the Settings.py file, Inside the brackets insert an asterisk ✳ It should look something like this Allowed host = [ *]; Then try again. On Thu, Jul 12, 2018, 7:34 PM Dikus Extrange wrote: > Hi Jason. Thank you for your reply. I tried with

Re: Accessing Django through ssh tunneling and error to get status

2018-07-12 Thread Dikus Extrange
Hi Jason. Thank you for your reply. I tried with your suggestion. Django complained about putting then name of my laptop and its domain in allowed hosts (I had to put 'localhost' and '127.0.0.1' before). So I put it in settings.py and the. Result is the same with the same message. El jueves,

Re: Accessing Django through ssh tunneling and error to get status

2018-07-12 Thread Jason
you should use *0.0.0.0* for the ip address rather than 127.0.0.1 On Thursday, July 12, 2018 at 7:22:33 AM UTC-4, Dikus Extrange wrote: > > Hi everyone. I'm accessing to a Django application through a ssh tunnel > with putty as client. I run the server with ./manage.py run server > 127.0.0.1:800

Accessing Django through ssh tunneling and error to get status

2018-07-12 Thread Dikus Extrange
Hi everyone. I'm accessing to a Django application through a ssh tunnel with putty as client. I run the server with ./manage.py run server 127.0.0.1:8000 and it starts right but launching an infinite and annoying message: Not found: /http:/127.0.0.1:8000/status [12/Jul/2018 10:02:59] "GET http