I need help to install nextcloud on Debian

Are you aware that this is not the complete configuration? Also did you check Apache logs?

Hi ! Is it complete now ? ^^ if not, I don’t see what’s missing :confused:

<VirtualHost *:443>
    DocumentRoot "/var/www/cloud.mydomain.com"
    ServerName cloud.mydomain.com
    <Directory "/var/www/cloud.mydomain.com">
        Options +FollowSymlinks
        AllowOverride All
        <IfModule mod_dav.c>
            Dav off
        </IfModule>
        SetEnv HOME /var/www/cloud.mydomain.com
        SetEnv HTTP_HOME /var/www/cloud.mydomain.com
        allow from all
        Options None
        Require all granted
    </Directory>
    SSLCertificateFile /etc/letsencrypt/live/mydomain.com/fullchain.pem
    SSLCertificateKeyFile /etc/letsencrypt/live/mydomain.com/privkey.pem
    Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>

My logs only contains those 3 lines :

[Thu Aug 23 14:38:24.074746 2018] [mpm_prefork:notice] [pid 21948] AH00169: caught SIGTERM, shutting down
[Thu Aug 23 14:38:24.269079 2018] [mpm_prefork:notice] [pid 22030] AH00163: Apache/2.4.25 (Debian) OpenSSL/1.0.2l configured – resuming normal operations
[Thu Aug 23 14:38:24.270256 2018] [core:notice] [pid 22030] AH00094: Command line: ‘/usr/sbin/apache2’

Thanks by advance :slight_smile: