mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-15 21:55:53 +08:00
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
This commit is contained in:
parent
79db920fa7
commit
2927493cf3
@ -113,6 +113,10 @@ class AppDslService:
|
|||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
max_size = 10 * 1024 * 1024 # 10MB
|
max_size = 10 * 1024 * 1024 # 10MB
|
||||||
|
# tricky way to handle url from github to github raw url
|
||||||
|
if yaml_url.startswith("https://github.com") and yaml_url.endswith((".yml", ".yaml")):
|
||||||
|
yaml_url = yaml_url.replace("https://github.com", "https://raw.githubusercontent.com")
|
||||||
|
yaml_url = yaml_url.replace("/blob/", "/")
|
||||||
response = ssrf_proxy.get(yaml_url.strip(), follow_redirects=True, timeout=(10, 10))
|
response = ssrf_proxy.get(yaml_url.strip(), follow_redirects=True, timeout=(10, 10))
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
content = response.content
|
content = response.content
|
||||||
|
Loading…
x
Reference in New Issue
Block a user