বেসিক সেটআপের জন্য আপনার যা প্রয়োজন তা হ'ল এটি
এই জাতীয় কনফিগারেশন লোকালহোস্টে পিএইচপিএমআইএডমিনকে ভাঙবে না
সার্ভার চলমান ডিভাইসে একটি স্ট্যাটিক আইপি বাঞ্ছনীয়
এই উদাহরণটি 192.168.1.x আইপি ব্যবহার করে। আপনার নেটওয়ার্ক কনফিগারেশনটি একটি পৃথক আইপি ব্যবহার করতে পারে
অ্যাপাচে 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.
#
অতিথি মেশিনগুলি এবং আপনার নিজের অনুমতি দিন। সুরক্ষার সতর্কতা হিসাবে, আপনি সকলের থেকে অনুমতি এড়াতে পারেন তবে পরিবর্তে নির্দিষ্ট গেস্ট আইপি ব্যবহার করতে পারেন উদাহরণস্বরূপ 192.168.1.xxx থেকে মঞ্জুরি দিন যেখানে xxx অতিথি মেশিনের আইপি। এই ক্ষেত্রে আপনাকে অতিথি মেশিনে স্থির আইপিগুলি বিবেচনা করতে হবে
# 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>
ট্রে আইকন থেকে সমস্ত পরিষেবা পুনরায় চালু করুন এবং অনলাইনে রাখুন