Hi my friends
I create daphne.sock for websocket and gunicorn.sock for http request , two
ASGI and WSGI is activated
python manage.py runworker is excellent and dont have any Errors
nginx.conf proxy_pass equals to unixes. but have this errors according to
this
server{
listen 80;
server_name 185.252.11.11 domain.com;
location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
proxy_pass http://../gunicorn.sock;
}
location /static/ {
root
/home/Farzand-user/Farazan_Parvari_Project/Farzand_Parvar/Farazan_Parvari_Project;
}
location /ws/ {
proxy_buffers 8 32k;
proxy_buffer_size 64k;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
proxy_pass http://unix:/.../daphne.sock;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
}
}
according to this page
https://avilpage.com/2018/05/deploying-scaling-django-channels.html
http://masnun.rocks/2016/11/02/deploying-django-channels-using-daphne/
<http://www.google.com/url?q=http%3A%2F%2Fmasnun.rocks%2F2016%2F11%2F02%2Fdeploying-django-channels-using-daphne%2F&sa=D&sntz=1&usg=AFQjCNEaeciqSaEn51NpmJu2n4svRm4B6w>
the HTTP request is wll but I have Errors in websocket in console WebSocket
connection to 'ws://domain/ws/' failed: Error during WebSocket handshake:
Unexpected response code: 404
server is centos with directadmin , nginx 1.15
--
You received this message because you are subscribed to the Google Groups
"Django developers (Contributions to Django itself)" 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 https://groups.google.com/group/django-developers.
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-developers/5e29f063-5760-49ce-916c-303a6eec7a0f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.