Django 频道和天蓝色

2023-10-20Python开发问题
0

本文介绍了Django 频道和天蓝色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试在 azure 中部署 django 频道.

I am trying to deploy django channels in azure.

我已经将它与 azure redis 缓存集成,它在本地主机上运行良好.

I have already integrated it with azure redis cache and it's working good in local host.

我已经尝试在 azure 中正常部署 django 应用程序,除了套接字之外的一切都在工作.

I have tried the normal deployment of django apps in azure, everything except sockets are working.

CHANNEL_LAYERS = {
'default': {
    'BACKEND': 'channels_redis.core.RedisChannelLayer',
    'CONFIG': {
        "hosts": [(f'redis://:{os.environ["REDISPASS"]}@mywebsite.redis.cache.windows.net:6379/0')],
    },
},

}

显示意外错误网站意外关闭.

It's showing unexpected error website closed unexpectedly.

我已经按照这个基本的状态代码来实现 django 频道.

I have followed this basic stater code for implementing django channels.

教程

推荐答案

从你的配置文件中,我看到你使用了 6379 端口.

From your config file, I saw you use port 6379.

这不行,你可以只使用https端口443和httpazure webapp 服务中的端口 80.

如果必须使用6379等自定义端口,建议使用服务器并开启安全端口,则webapp不会部署在azure上.

If you must use a custom port such as 6379, it is recommended to use a server and open a secure port, then the webapp will not be deployed on azure.

这篇关于Django 频道和天蓝色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10

按10分钟间隔对 pandas 数据帧进行分组
Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)...
2024-08-22 Python开发问题
11