I have a website that i cant check the acces logs it keep asking ssl
#SSL
#SSL
#SSL
#SSL
im using cloudflare ssl , i think the problem is related to the file config
`<VirtualHost :80>
ServerAdmin webmaster@example.com
DocumentRoot "/www/wwwroot/amis-med.com"
ServerName www.amis-med.com
ServerAlias amis-med.com
#errorDocument 404 /404.html
ErrorLog "/www/wwwlogs/amis-med.com-error_log"
CustomLog "/www/wwwlogs/amis-med.com-access_log"#HTTP_TO_HTTPS_START
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{SERVER_PORT} !443$
RewriteRule (.) https://%{SERVER_NAME}$1 [L,R=301]
</IfModule>
#HTTP_TO_HTTPS_END
#SECURITY-START Hotlink protection configuration
RewriteEngine on
RewriteCond %{HTTP_REFERER} !amis-med.com [NC]
RewriteRule .(jpg|jpeg|gif|png|js|css) /404.html [R=404,NC,L]
#SECURITY-END
#DENY FILES
<Files ~ (\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)$>
Order allow,deny
Deny from all
</Files>
#PHP
<FilesMatch \.php$>
SetHandler "proxy:unix:/tmp/php-cgi-82.sock|fcgi://localhost"
</FilesMatch>
#PATH
<Directory "/www/wwwroot/amis-med.com">
SetOutputFilter DEFLATE
Options FollowSymLinks
AllowOverride All
Require all granted
DirectoryIndex index.php index.html index.htm default.php default.html default.htm
</Directory>
</VirtualHost>
<VirtualHost *:443>
ServerAdmin webmaster@example.com
DocumentRoot "/www/wwwroot/amis-med.com/"
ServerName SSL.amis-med.com
ServerAlias amis-med.com www.amis-med.com
#errorDocument 404 /404.html
ErrorLog "/www/wwwlogs/amis-med.com-error_log"
CustomLog "/www/wwwlogs/amis-med.com-access_log"#SSL
SSLEngine On
SSLCertificateFile /www/server/panel/vhost/cert/amis-med.com/fullchain.pem
SSLCertificateKeyFile /www/server/panel/vhost/cert/amis-med.com/privkey.pem
SSLCipherSuite EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5
SSLProtocol All -SSLv2 -SSLv3 -TLSv1
SSLHonorCipherOrder On
#SECURITY-START Hotlink protection configuration
RewriteEngine on
RewriteCond %{HTTP_REFERER} !amis-med.com [NC]
RewriteCond %{HTTP_REFERER} !www.amis-med.com [NC]
RewriteRule .(jpg|jpeg|gif|png|js|css) /404.html [R=404,NC,L]
#SECURITY-END
#PHP
<FilesMatch \.php$>
SetHandler "proxy:unix:/tmp/php-cgi-82.sock|fcgi://localhost"
</FilesMatch>
#DENY FILES
<Files ~ (\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)$>
Order allow,deny
Deny from all
</Files>
#PATH
<Directory "/www/wwwroot/amis-med.com/">
SetOutputFilter DEFLATE
Options FollowSymLinks
AllowOverride All
Require all granted
DirectoryIndex index.php index.html index.htm default.php default.html default.htm
</Directory>
</VirtualHost>`
how can i fix this issue thank you