GNU/Linux >> Linux の 問題 >  >> Ubuntu

UbuntuでApacheと.htaccessを使用してIPアドレスをブロックし、ファイルとフォルダーを保護するにはどうすればよいですか?

このチュートリアルでは、Webサイトのブロックリストを作成して、不正であることがわかっているIPアドレスがサーバーに接続できないようにします。また、オンラインで他の人に開かれたくないファイルを保護します。

まず、000-default.confを編集します 必要な変更を加えます:

<code>pico /etc/apache2/sites-enabled/000-default.conf</code>
Code language: Bash (bash)
<VirtualHost *:80>
<Directory /home/latewebi/public_html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ServerName www.lateweb.info
ServerAdmin [email protected]
DocumentRoot /home/latewebi/public_html

# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn

ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined

# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
Code language: Apache (apache)

ここで、.htaccessファイルを作成し、ブロックするIPアドレスと保護するファイルを配置する必要があります:

order allow,deny
deny from 91.247.38.54
deny from 91.247.38.55
deny from 91.247.38.57
deny from 198.15.180.240
deny from 67.229.79.154
deny from 188.120.229.212
deny from 85.128.142.38
allow from all

# Protect the htaccess file
<Files .htaccess>
Order Allow,Deny
Deny from all
</Files>

# Protect functions.php
<Files functions.php>
Order Allow,Deny
Deny from all
</Files>

# Protect header.php
<Files header.php>
Order Allow,Deny
Deny from all
</Files>

# Protect footer.php
<Files footer.php>
Order Allow,Deny
Deny from all
</Files>

# Protect snowstorm.js
<Files snowstorm.js>
Order Allow,Deny
Deny from all
</Files>
Code language: Apache (apache)

Ubuntu
  1. Ubuntu18.04でApacheを使用してNextcloudをインストールおよび構成する方法

  2. Ubuntu18.04でApacheを使用してphpMyAdminをインストールして保護する方法

  3. Ubuntu16.04にApacheとSSLを使用してGhostブログソフトウェアをインストールする方法

  1. Ubuntu18.04でApacheを使用してownCloudをインストールおよび構成する方法

  2. DebianおよびUbuntuでLogwatchを使用してサーバーログファイルを監視する方法

  3. Ubuntu 15.10にApache、MySQL、SSLを使用してDrupal8をインストールする方法

  1. Ubuntu18.04でApacheとmod_wsgiを使用してPythonスクリプトを実行する方法

  2. Ubuntu16.04でVarnishとApacheを使用してMagento2をセットアップする方法

  3. Ubuntu18.04LTSでApacheを使用してmod_pagespeedモジュールをインストールおよび構成する方法