Nginx Resumeable Downloads

My YunoHost server

Hardware:
x86
DynDns

Currently I would like to achieve resumable downloads for Nextcloud, a tip and research bring me to the following point.

Unfortunately the config in Younohost is a bit different from the standard behaviour in Linux. Can someone tell me where, and given how, best how to activate the module?

Greetings Felix

Edit::

I myself would now try to set the entry in /etc/yunohost/apps/nextcloud/conf/nginx.conf.


location ~ \.php$ {
    fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on;
}

location /files {
    root /root/path/to/yetishare;
    internal;
}

But I don’t understand the option with the storage location.

Thanks to a tip from outside the forum, I have now added it to the
/etc/yunohost/apps/nextcloud/conf/nginx.conf via the entry

fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on;

in the category

location ~ \.php(?:$|/)

the downloads are now pausable.

Restart nginx and PHP and you’re done.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.