基本的なセットアップに必要なのはこれだけです
この種の設定は、localhostのphpMyAdminを壊しません
サーバーを実行しているデバイスでは静的IPが推奨されます
この例では、192.168.1.x IPを使用しています。ネットワーク構成で別のIPが使用されている可能性があります
Apacheのhttpd.confには、次のものが必要です。
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80
名前を空白のままにして、デフォルトになるようにします。
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ゲストマシンと自分自身を許可します。セキュリティ上の注意として、Allow from allを避け、特定のゲストIPを使用することができます。たとえば、Allow from 192.168.1.xxx(xxxはゲストマシンIP)です。この場合、ゲストマシンの静的IPも考慮する必要があります。
# Controls who can get stuff from this server.
#
# Require all granted
# onlineoffline tag - don't remove
Order Deny,Allow
# Deny from all
Allow from all
Allow from 127.0.0.1
Allow from ::1
Allow from localhost
Allow from 192.168.1.*YOURguestIP*
Allow from 192.168.1.*YOURselfIP*
</Directory>
すべてのサービスを再起動し、トレイアイコンからオンラインにします