要創(chuàng)建Apache虛擬主機,請按照以下步驟操作:
httpd -S
/etc/httpd/conf.d/example.com.conf
<VirtualHost *:80>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/example.com/public_html
ErrorLog /var/log/httpd/example.com_error.log
CustomLog /var/log/httpd/example.com_access.log combined
</VirtualHost>
在這個示例中,我們定義了一個名為“example.com”的虛擬主機,它的根目錄是“/var/www/example.com/public_html”,并且我們還定義了一個錯誤日志和訪問日志。
systemctl restart httpd
在您的DNS控制面板中添加一個A記錄,將您的域名指向您的服務(wù)器的IP地址。
在您的服務(wù)器上創(chuàng)建虛擬主機的根目錄,并在其中添加您的網(wǎng)站文件。
您的虛擬主機現(xiàn)在已準(zhǔn)備就緒。在瀏覽器中輸入您的域名,應(yīng)該能夠看到您的網(wǎng)站。