Friday, May 19, 2017

Django Channels Error: WebSocket connection to 'ws://openchat.us:24711/' failed: WebSocket is closed before the connection is established.

Hi hoping somebody in the entire Djang Users can help me solve this problem its been going on for about a week now Im using the django channels example on github the "Multichat" example I am using webfaction. 

my website for this test is www.openchat.us but when you go to the site it throws an error the error that i am getting is this: 
WebSocket connection to 'ws://openchat.us:24711/' failed: WebSocket is closed before the connection is established.


settings.py 

CHANNEL_LAYERS = {
   "default": {
        "BACKEND": "asgi_redis.RedisChannelLayer",
        "CONFIG": {
        },
        "ROUTING": "myproject.routing.channel_routing",
   },
}




redis_host = os.environ.get('REDIS_HOST', 'localhost')


INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'myproject',
    'channels',
    'chat',
]


command that im using to launch daphne is : daphne -p 24711 myproject.asgi:channel_layer

$ daphne -p 27411 myproject.asgi:channel_layer
2017-05-19 16:52:40,360 INFO     Starting server at tcp:port=27411:interface=127.0.0.1, channel layer myproject.asgi:channel_layer.
2017-05-19 16:52:40,360 INFO     HTTP/2 support enabled
2017-05-19 16:52:40,360 INFO     Using busy-loop synchronous mode on channel layer
2017-05-19 16:52:40,361 INFO     Listening on endpoint tcp:port=27411:interface=127.0.0.1

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/84199dbf-942d-43e4-9f08-098bc5cda922%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment