How to access systems from a local server by other machines

-1

I have a machine running multiple systems through EasyPHP5.2.10 , however, when trying to access those systems through another machine by replacing localhost with my machine's address, the pages do not open.

I saw that there are some changes that have to be made to the configuration files of php and apache, php.ini and http.conf to make the easyphp page open when the address of your machine is searched in the browser. But that already happens.

When I type the address of my machine, open that easyphp screen with the folder of all systems. Some open, others do not even have no difference between them.

I already tried to unlock port 80 from the firewall and it did not work.

Does anyone know how to solve this problem?

This is the page the user sees on another machine:

    
asked by anonymous 30.07.2018 / 13:46

1 answer

1

You will have to make some changes to your httpd.conf file.

  • Add your IP address just below the localhost IP address
#Listen 12.34.56.78:80
Listen 127.0.0.1:80 (padrao)
Listen 192.....:80 (IP do seu servidor)
  • Change the directory access settings below by commenting on the Allow from 127.0.0.1 and Deny from lines and add the Allow from all line > as in the example.
<Directory "C:/../binaries/home/images_easyphp">
        Options Indexes MultiViews
        AllowOverride None
        Order deny,allow
        #Allow from 127.0.0.1
        #Deny from all
        Allow from all
        Require all granted
</Directory>

<Directory "C:/../binaries/home">
        Options FollowSymLinks Indexes
        AllowOverride None
        Order deny,allow
        #Allow from 127.0.0.1
        #Deny from all
        Allow from all
        Require all granted       
</Directory>

<Directory "C:/../Webserver/modules">
        Options FollowSymLinks Indexes
        AllowOverride All
        Order deny,allow
        #Allow from 127.0.0.1
        #Deny from all
        Allow from all
        Require all granted       
</Directory>
    
30.07.2018 / 16:37