<IfModule mod_ssl.c>
SSLStaplingCache shmcb:/var/run/apache2/stapling_cache(128000)
<VirtualHost *:443>
                ServerAdmin informax@informax.es
                ServerName lovewoo.nodo10.informaxdns.es
                DocumentRoot /home/webs/lovewoo
                 <Directory /home/webs/lovewoo>
                        Options Indexes FollowSymLinks
                        AllowOverride All
                        Require all granted
                 </Directory>


<FilesMatch \.php$>
      # For Apache version 2.4.10 and above, use SetHandler to run PHP as a fastCGI process server
      SetHandler "proxy:unix:/run/php/php8.3-fpm.sock|fcgi://localhost"
</FilesMatch>

 ErrorLog /var/log/apache2/lovewoo.your_domain_error.log
 CustomLog /var/log/apache2/lovewoo.your_domain_access.log combined
SSLCertificateFile /etc/letsencrypt/live/lovewoo.nodo10.informaxdns.es/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/lovewoo.nodo10.informaxdns.es/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
Header always set Strict-Transport-Security "max-age=31536000"
SSLUseStapling on
</VirtualHost>
</IfModule>