Salve,

Ho provato a configurare il web server con un indirizzo IP della mia lan nel file httpd.conf
in sostituzione del localhost 127.0.0.1

modifiche file httpd.conf
codice:
# Change this to Listen on specific IP addresses as shown below to 
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80

.
.
.
.
Listen 10.2.145.245:80 

	
	<Directory "${path}/phpmyadmin">
        Options FollowSymLinks Indexes
        AllowOverride None
        Order deny,allow
        allow from 10.2.145.245 
        deny from all
    </Directory>
	
    <Directory "${path}/sqlitemanager">
        Options FollowSymLinks Indexes
        AllowOverride None
        Order deny,allow
        allow from 10.2.145.245 
        deny from all
    </Directory>	
	
	<Directory "${path}/home">
        Options FollowSymLinks Indexes
        AllowOverride None
        Order deny,allow
        allow from 10.2.145.245         
        deny from all
    </Directory>
PS.

Versione easyphp 3.0

L'errore che visualizzo è il 403.

Grazie anticipatamente,
Gaten