MAMPのセキュリティーを強化する。

MAMPで構築したローカル環境のセキュリティーを強化。
ローカル環境でも外部からアクセスできる場合を考慮して、外からは見えないようにする。

・MAMP→conf→apache→httpdを開く
・通常はhtdocsの表記で検索するがkureaiの場合はUsers/testdocsにデータを置いているので、testdocsで検索し以下の部分を変更する。

<Directory "/Users/testdocs">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options All

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
    #Require all granted
		Order deny,allow
		Deny from all
		Allow from 127.0.0.1
		Allow from localhost
		Allow from 192.168

ここの

Order deny,allow
		Deny from all
		Allow from 127.0.0.1
		Allow from localhost
		Allow from 192.168

の部分が変更した箇所。
通常は

Order allow,deny
Allow from all

のようになっているところを上記に変更することで外部からの侵入を防ぐことができる。

PAGE TOP