Temel bir kurulum için ihtiyacınız olan tek şey bu olmalı
Bu tür bir yapılandırma localhost'ta phpMyAdmin'i bozmaz
Sunucuyu çalıştıran cihazda statik bir IP önerilir
Bu örnek, 192.168.1.x IP'sini kullanır. Ağ yapılandırmanız farklı bir IP kullanıyor olabilir
Apache'deki httpd.conf dosyasında şunları yapmalısınız:
# 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
Varsayılanları alması için adı boş bırakırdım:
# 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.
#
Konuk makinelere ve kendinize izin verin. Bir güvenlik uyarısı olarak, Tümünden İzin Ver'i engelleyebilir , bunun yerine belirli konuk IP'si kullanabilirsiniz, örneğin 192.168.1.xxx'ten izin ver, burada xxx konuk makine IP'sidir. Bu durumda, konuk makinelerde statik IP'leri de dikkate almanız gerekebilir.
# 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>
Tepsi simgesinden tüm hizmetleri yeniden başlatın ve Çevrimiçi Yapın