博主头像
mxd's Blog

"The quieter you become,the more you are able to hear."

mxd's EPG 服务器端如何配置域名?

转到

[你的目录]/epg/settings.py

修改下面的代码段

# 允许的域名
ALLOWED_HOSTS = ['https://epg.crestekk.cn', 'https://epg.mxdyeah.top']
# 建议禁止或注释
# DENY :表示该页面不允许在 frame 中展示,即便是在相同域名的页面中嵌套也不允许
# SAMEORIGIN :表示该页面可以在相同域名页面的 frame 中展示
# ALLOW-FROM uri :表示该页面可以在指定来源的 frame 中展示
# X_FRAME_OPTIONS = 'SAMEORIGIN'
# 防止浏览器猜测资产的内容类型
SECURE_CONTENT_TYPE_NOSNIFF = False
# 也是允许域名
CSRF_TRUSTED_ORIGINS = ['https://epg.crestekk.cn', 'https://epg.mxdyeah.top']
#如果要配置Nginx反向代理,这里需要修改为你的域名
CSRF_TRUSTED_ORIGINS = ['https://epg.crestekk.cn']
mxd's EPG 服务器端如何配置域名?
https://blog.mxdyeah.top/mxdyeah_blog_post/56.html
本文作者 mxdyeah
发布时间 2024-06-22
许可协议 CC BY-NC-SA 4.0
发表新评论