Skip to content
GitLab
菜单
为什么选择 GitLab
定价
联系销售
探索
为什么选择 GitLab
定价
联系销售
探索
登录
获取免费试用
主导航
搜索或转到…
项目
C
ComfyUI
管理
动态
成员
代码
仓库
分支
提交
标签
仓库图
比较修订版本
锁定的文件
部署
模型注册表
分析
模型实验
帮助
帮助
支持
GitLab 文档
比较 GitLab 各版本
社区论坛
为极狐GitLab 提交贡献
提交反馈
隐私声明
快捷键
?
新增功能
4
代码片段
群组
项目
显示更多面包屑
hanamizuki
ComfyUI
提交
7d62d89f
提交
7d62d89f
编辑于
1 year ago
作者:
EllangoK
浏览文件
操作
下载
补丁
差异文件
add cors middleware
上级
349f15ed
No related branches found
分支 包含提交
No related tags found
标签 包含提交
无相关合并请求
变更
1
隐藏空白变更内容
行内
左右并排
显示
1 个更改的文件
server.py
+14
-1
14 个添加, 1 个删除
server.py
有
14 个添加
和
1 个删除
server.py
+
14
−
1
浏览文件 @
7d62d89f
...
...
@@ -27,6 +27,19 @@ async def cache_control(request: web.Request, handler):
response
.
headers
.
setdefault
(
'
Cache-Control
'
,
'
no-cache
'
)
return
response
@web.middleware
async
def
cors_middleware
(
request
:
web
.
Request
,
handler
):
if
request
.
method
==
"
OPTIONS
"
:
# Pre-flight request. Reply successfully:
response
=
web
.
Response
()
else
:
response
=
await
handler
(
request
)
response
.
headers
[
'
Access-Control-Allow-Origin
'
]
=
'
*
'
response
.
headers
[
'
Access-Control-Allow-Methods
'
]
=
'
POST, GET, DELETE, PUT, OPTIONS
'
response
.
headers
[
'
Access-Control-Allow-Headers
'
]
=
'
Content-Type, Authorization
'
response
.
headers
[
'
Access-Control-Allow-Credentials
'
]
=
'
true
'
return
response
class
PromptServer
():
def
__init__
(
self
,
loop
):
PromptServer
.
instance
=
self
...
...
@@ -37,7 +50,7 @@ class PromptServer():
self
.
loop
=
loop
self
.
messages
=
asyncio
.
Queue
()
self
.
number
=
0
self
.
app
=
web
.
Application
(
client_max_size
=
20971520
,
middlewares
=
[
cache_control
])
self
.
app
=
web
.
Application
(
client_max_size
=
20971520
,
middlewares
=
[
cache_control
,
cors_middleware
])
self
.
sockets
=
dict
()
self
.
web_root
=
os
.
path
.
join
(
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
)),
"
web
"
)
...
...
此差异已折叠。
点击以展开。
预览
0%
加载中
请重试
或
添加新附件
.
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
保存评论
取消
想要评论请
注册
或
登录