在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上展示您的内容。