Hi!
I'm trying to make external link from yandex disk webdav. I see files during choosing, but all link doesn't work. They looks like
https://our_site/webdav_folder1/webdav_folder2/file. I can choose download file form link and it's work. But Idea is getting big video file from external storage (and not download it)
Some piece of config from nginx
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
include fastcgi_params;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
moodle 3.6.2
Please give me any idea. Why this way to link a file doesn't work?