Как получить доступ к xampp htdocs по ip компьютерной сети в Ubuntu 16.04 LTS - PullRequest
0 голосов
/ 12 октября 2019

Я установил Xampp 7.3.9-0 в Ubuntu 16.04 LTS и все работает отлично.

Но когда я хочу получить доступ к localhost через свою компьютерную сеть, ip вроде: 192.168.1.156 Браузер показывает мне ошибку 403:

Access forbidden!
You don't have permission to access the requested directory. There is either no index document or the directory is read-protected.

If you think this is a server error, please contact the webmaster.

Я проверил мои файлы конфигурации, и они, кажется,будь прав!

Мой /opt/lampp/apache2/conf/httpd.conf:

Alias /bitnami/ "/opt/lampp/apache2/htdocs/"
Alias /bitnami "/opt/lampp/apache2/htdocs"

<Directory "/opt/lampp/apache2/htdocs">
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>

, а мой /etc/hosts содержит:

127.0.0.1   localhost
127.0.1.1   wrr-machine

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

Я могу получить доступ к localhost с помощью http://localhost и http://192.168.1.1 Но я не могу получить доступ по сети ip 192.168.1.156.

Это мой сетевой ip: enter image description here как я могу получить доступ?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...