在Fedora上安裝和配置Web服務器可以通過以下步驟實現:
sudo dnf install httpd
sudo systemctl start httpd
sudo systemctl enable httpd
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --reload
在瀏覽器中輸入服務器IP地址或域名,應該能夠看到Apache的默認頁面。
(可選)配置虛擬主機:如果您需要配置多個網站,可以使用虛擬主機功能。編輯Apache的配置文件/etc/httpd/conf/httpd.conf
,并在文件末尾添加以下內容:
<VirtualHost *:80>
ServerAdmin webmaster@example.com
DocumentRoot /var/www/html/example
ServerName example.com
ServerAlias www.example.com
ErrorLog logs/example.com-error_log
CustomLog logs/example.com-access_log common
</VirtualHost>
在上面的示例中,將example
替換為您的域名,并根據需要修改路徑和其他配置。
sudo systemctl restart httpd
現在您已經成功在Fedora上安裝和配置了Web服務器。您可以將網站文件放置在/var/www/html
目錄下,開始在Web上展示您的內容。