How do I connect to this localhost from another computer on the same network?

后端 未结 8 2215
陌清茗
陌清茗 2020-11-22 16:48

I\'m currently working on a project and I would like to test it out on two laptops at home where one laptop connects to the localhost on the other. I am using XAMPP. How do

8条回答
  •  再見小時候
    2020-11-22 17:33

    This is a side note if one still can't access localhost from another devices after following through the step above. This might be due to the apache ports.conf has been configured to serve locally (127.0.0.1) and not to outside.

    check the following, (for ubuntu apache2)

      $ cat /etc/apache2/ports.conf
    

    if the following is set,

    NameVirtualHost *:80  
    Listen 127.0.0.1:80  
    

    then change it back to default value

    NameVirtualHost *:80  
    Listen 80  
    

提交回复
热议问题