The first competes with the second and the third competes with the fourth for similar coverages.
From that set, It seems you only need two (first and third).
But even when using all four, you fail to show coverage for https://www.mydomainname.hu/
One and two cover both names for http.
Three and for cover https - but only for the root domain.
And (if/when used) the third redirects to itself - endless loop.
The thrid one is a https virtual host, and the 403 means no matter what specific page you visit in https protocol (of this site), it will always return you to the front page, and, the front page is going to sent you to the front page… (Which is why it’s a infinity loop)
Here is the (seemly) correct version: (I’ve tried to optimize the http redirection)
<VirtualHost *:80>
DocumentRoot /var/www/html/mydomainamehu
ServerName mydomainame.hu
ServerAlias www.mydomainame.hu
RewriteCond %{HTTPS} !=on
# This checks to make sure the connection is not already HTTPS
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
</VirtualHost>
<VirtualHost *:443>
ServerName mydomainame.hu
DocumentRoot /var/www/html/mydomainamehu
</VirtualHost>