Hello, I try to add Nextcloud with the How to install Nextcloud with ISPConfig 3.1 tutorial, I have done two clean installations with the The Perfect Server - Debian 10 Apache tutorial for testing. But by adding the settings in Sites, New website, php.ini the web page is blank, either in https or http. Php.ini : PHP: opcache.enable=1opcache.enable_cli=1opcache.memory_consumption=128opcache.interned_strings_buffer=8opcache.max_accelerated_files=10000opcache.revalidate_freq=1opcache.save_comments=1memory_limit = 512 If I delete the php.ini configuration it works. Thank you Excellent thanks, it works very well. Add in Web Domain - Rewrite HTTP to HTTPS FileZilla connects to the server but maybe I have something badly configured because it does not upload all the files, add nextcloud as follows: Code: cd /tmp wget https://download.nextcloud.com/server/releases/nextcloud-18.0.0.zip unzip nextcloud-18.0.0.zip chown -R root:root /var/www/clients/client0/web1/web cp -r nextcloud/* /var/www/clients/client0/web1/web chown -R web1:client0 /var/www/clients/client0/web1/web I also added it to fail2ban Code: nano /etc/fail2ban/filter.d/nextcloud.conf [Definition] failregex = ^{"reqId":".*","remoteAddr":".*","app":"core","message":"Login failed: '.*' \(Remote IP: '<HOST>'\)","level":2,"time":".*"}$ ^{"reqId":".*","level":2,"time":".*","remoteAddr":".*","user,:".*","app":"no app in context".*","method":".*","message":"Login failed: '.*' \(Remote IP: '<HOST>'\)".*}$ ^{"reqId":".*","level":2,"time":".*","remoteAddr":".*","user":".*","app":".*","method":".*","url":".*","message":"Login failed: .* \(Remote IP: <HOST>\).*}$ nano /etc/fail2ban/jail.local [nextcloud] backend = auto enabled = true port = 80,443 protocol = tcp filter = nextcloud logpath = /var/www/cloud.mydomain.com/private/data/nextcloud.log service fail2ban restart Please correct me if I have done something wrong
Do you see any error in the screen if you enable display_errors? Try adding lines one by one until it fails to find the problematic line
You've set a wrong memory limit. Your memory setting is 512 Bytes and not Megabytes and 512 bytes are definitely not enough for Nextcloud
Thanks, it works fine I have added a couple of details above, add nextcloud to fail2ban and install by terminal Please correct me if I have done something wrong Thank you
You can leave out Code: chown -R root:root /var/www/clients/client0/web1/web You can also use the web installer instead of the full .zip download, which I recommend. This will also make it easier to down- and upload, since you'll have to upload one file. If your FTP is acting weird, you should check if you have the passive FTP ports opened (there are topics about this on the forum). Nextcloud has built-in bruteforce protection. You can also install a Nextcloud app for blocking IP's after X failed attempts.