Запрещенное сообщение в apache2 с черным списком - PullRequest
0 голосов
/ 21 июня 2019

Я тестирую с черным и белым списком, и у меня проблемы.Apache2 показывает запрещенное сообщение

Это мой VirtualHost

    ServerAdmin webmaster@localhost
    DocumentRoot /var/www/
        <Location />
    Order allow,deny
    allow from [MY IP]
    deny from all
    Require all granted
        Include conf/IP_my_list.conf
        </Location>
    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost> ```

IP_my_list.conf is just another list of IPs that i want to enable, but they are not important.

---IP_my_list.conf ---

Требуется IP [МОЙ IP]


When i do a2ensite [config file] it's ok

```$ apachectl configtest
Syntax OK

Однако, когда я перезагружаю apache2 и пытаюсь получить доступ черезвеб-браузер (в моем случае Firefox) Firefox показывает мне следующее Запрещенное сообщение:


You don't have permission to access / on this server.```

I don't think that i could be a problem of permissions, because if i comment this lines in virtualhost, everything is ok.

Do you have any advice regarding this?
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...