I have created a virtual host with Apache and XAMPP. Locally I can access, but if I try to enter from another computer and in the same network does not access.
<VirtualHost *:80>
DocumentRoot "C:/xampp/htdocs/project"
ServerName devel.project
ServerAlias devel.project
SSLEngine on
SSLCertificateFile conf/ssl.crt/server.crt
SSLCertificateKeyFile conf/ssl.key/server.key
<Directory "C:/xampp/htdocs/project">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
</Directory>
</VirtualHost>
What could be the error?