<IfModule mod_ssl.c>
<VirtualHost *:443>
    #ServerAdmin admin@example.com
    ServerName qatarkarate.com
    ServerAlias www.qatarkarate.com
    DocumentRoot /home/jabir/qatarkarate.com/public
     
    <Directory /home/jabir/qatarkarate.com/public/>
            #Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
            #Require all granted
    </Directory>
     
    <Location />
       require all granted
    </Location>
    LogLevel info
    ErrorLog ${APACHE_LOG_DIR}/qatarkarate-error.log
    CustomLog ${APACHE_LOG_DIR}/qatarkarate-access.log combined

Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/qatarkarate.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/qatarkarate.com/privkey.pem
</VirtualHost>
</IfModule>
