Un saluto a tutto il forum altervista,
avrei necessità di installare in locale su una macchina win10 l'applicazione Xampp,
l'installazione va a buon fine ma non riesco a startare Apache, mi viene restituito
questo errore;

Error: Apache shutdown unexpectedly.
08:39:15 [Apache] This may be due to a blocked port, missing dependencies,
08:39:15 [Apache] improper privileges, a crash, or a shutdown by another method.
08:39:15 [Apache] Press the Logs button to view error logs and check
08:39:15 [Apache] the Windows Event Viewer for more clues
08:39:15 [Apache] If you need more help, copy and post this
08:39:15 [Apache] entire log window on the forums
Questo il file di configurazione httpd.conf:
ServerRoot "C:/xampp/apache"
Listen 8080
LoadModule ssl_module modules/mod_ssl.so
ServerName localhost:8080
# Virtual hosts
Include conf/extra/httpd-vhosts.conf


Questo il file di configurazione httpd-vhost.conf
#CONFIGURAZIONI SERVER PERSONALIZZATE
Listen 443
Listen 8080

NameVirtualHost *:8080

<VirtualHost *:8080>
ServerAdmin miamail@gmail.com
DocumentRoot "C:/xampp/htdocs/"
ServerName localhost
ServerAlias localhost
ErrorLog "logs/localhost-error.log"
CustomLog "logs/localhost-access.log" common
</VirtualHost>


<VirtualHost *:8080>
ServerAdmin miamail@gmail.com
DocumentRoot "C:/xampp/htdocs/area1"
ServerName area1.dev
ServerAlias www.area1.dev
ErrorLog "logs/area1.dev-error.log"
CustomLog "logs/area1.dev-access.log" common
</VirtualHost>
In sostanza apache non posso startarlo sulla porta 80 pertanto sto provando a farlo sulla 8080.

Mi dareste una mano ?