WordPressによるホームページ制作のCB-Web(シービーウェブ)

Memos 制作メモ

CB-Webホーム > 制作メモ > ubuntu,debian apache2 IPアドレスアクセス禁止

ubuntu,debian apache2 IPアドレスアクセス禁止,2020.10.16更新

[000-default.conf]
<VirtualHost *:80>
  ServerName any
  <Location />
    Order Deny,Allow
    Deny from all
  </Location>
  ...
</VirtualHost>

[defalut-ssl.conf]
<VirtualHost *:443>
  ServerName any
  <Location />
    Order Deny,Allow
    Deny from all
</Location>
...
</VirtualHost>

 

× CLOSE