การตั้งค่า Nameserver (NS1, NS2) สำหรับ XAMPP

การตั้งค่า Nameserver (NS1, NS2) สำหรับ XAMPP โดยปกติแล้ว XAMPP ถูกออกแบบมาเพื่อการพัฒนาเว็บไซต์ในเครื่อง (localhost) แต่ถ้าคุณต้องการให้เซิร์ฟเวอร์ XAMPP สามารถใช้งานเป็นเว็บโฮสติ้งพร้อม Nameserver (NS1, NS2) ได้ คุณต้องดำเนินการดังนี้:


1. ติดตั้ง DNS Server บนเครื่องเซิร์ฟเวอร์ (เช่น BIND หรือ Windows DNS Server)

บน Windows: ติดตั้ง BIND DNS Server

  1. ดาวน์โหลด BIND DNS Server จาก ISC BIND
  2. ติดตั้งและตั้งค่า BIND DNS

ไฟล์ named.conf:

text
zone "example.com" {
type master;
file "example.com.zone";
};

ไฟล์ example.com.zone:

text
$TTL 86400
@ IN SOA ns1.example.com. admin.example.com. (
2024062101 ; Serial
3600 ; Refresh
1800 ; Retry
1209600 ; Expire
86400 ) ; Minimum TTL
@ IN NS ns1.example.com.
@ IN NS ns2.example.com.
ns1 IN A 192.168.1.10
ns2 IN A 192.168.1.11
@ IN A 192.168.1.10
www IN A 192.168.1.10
  • แทนที่ example.com ด้วยโดเมนของคุณ
  • 192.168.1.10 แทนที่ด้วย IP เซิร์ฟเวอร์ของคุณ
  1. รีสตาร์ท DNS Service:
cmd
net stop named
net start named

2. ตั้งค่า Nameserver บนโดเมน

  1. เข้าไปที่ผู้ให้บริการโดเมน (เช่น GoDaddy, Namecheap)

  2. เปลี่ยน Nameserver เป็น:

    • ns1.example.comIP เซิร์ฟเวอร์
    • ns2.example.comIP เซิร์ฟเวอร์หรือ IP สำรอง
  3. รอให้ DNS Propagation เสร็จสิ้น (ใช้เวลา 24-48 ชั่วโมง)


3. ตั้งค่า Virtual Host บน XAMPP

  1. เปิดไฟล์ httpd-vhosts.conf ที่อยู่ใน:
makefile
C:\xampp\apache\conf\extra\httpd-vhosts.conf
  1. เพิ่ม Virtual Host:
apache
<VirtualHost *:80>
ServerAdmin admin@example.com
DocumentRoot "C:/xampp/htdocs/example"
ServerName example.com
ServerAlias www.example.com
ErrorLog "logs/example-error.log"
CustomLog "logs/example-access.log" common
</VirtualHost>
  1. เปิดใช้งาน Virtual Host ในไฟล์ httpd.conf:
apache
# Uncomment this line
Include conf/extra/httpd-vhosts.conf
  1. รีสตาร์ท Apache:
  • เปิด XAMPP Control Panel → กด Stop แล้ว Start Apache ใหม่

4. ตรวจสอบ DNS และ Nameserver

  • ใช้คำสั่ง nslookup หรือ dig เพื่อตรวจสอบ:
cmd
nslookup example.com
nslookup ns1.example.com

5. ทดสอบการทำงาน

  • เปิดเบราว์เซอร์และลองเข้า:
    • http://example.com
    • http://www.example.com

สรุป

  1. ติดตั้งและตั้งค่า DNS Server (เช่น BIND)
  2. ตั้งค่า Nameserver ในผู้ให้บริการโดเมน
  3. ตั้งค่า Virtual Host ใน XAMPP
  4. รีสตาร์ท DNS และ Apache
  5. ตรวจสอบด้วย nslookup
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

วิธีทำ Virtual Host บน XAMPP ในระบบปฏิบัติการ Windows

Virtual Host คืออะไร ? Virtual Host คือ การทำให้ Server...

Configuring Virtual Hosts on Xampp – How to Run Multiple Domains

1. add : httpd-vhosts.conf C:\xampp\apache\conf\extra\httpd-vhosts.conf <VirtualHost...

New xampp security concept: Access Forbidden Error 403 - Windows - phpMyAdmin

ขั้นตอน config XAMPP ให้สามารถเข้าถึงจากเครื่องอื่นได้Access forbidden! New XAMPP security...

วิธีติดตั้ง SSL Certificate บน XAMPP Web Server

ขั้นตอนการติดตั้ง SSL Certificate เตรียมไฟล์ดังต่อไปนี้ให้พร้อม 1.certificate file - server.crt...

การเปลี่ยนขนาดอัพโหลดสูงสุดใน php.ini (Changing the maximum upload size in php.ini)

วิธีแก้ไขปัญหาการอัปโหลดไฟล์เกินขนาดที่กำหนดใน PHP Error text: file_name" has failed to upload...