Apache HTTP 服务器是世界上最受欢迎的 Web 服务器之一
它是一个开源和跨平台的 HTTP 服务器,为大部分互联网网站提供支持。 Apache 提供了许多强大的功能,可以通过其他模块进行扩展。
UOS安装HTTP服务
sudo apt update
sudo apt install apache2
systemctl status apache2
systemctl start apache2
Apache 配置文件位于 /etc/apache2 目录中
主要的 Apache 配置文件是 /etc/apache2/apache2.conf
Apache将侦听的端口在 /etc/apache2/ports.conf 文件中指定
Apache Virtual Hosts 文件位于 /etc/apache2/sites-available 目录中。除非链接到 /etc/apache2/sites-enabled 目录,否则 Apache 不使用此目录中找到的配置文件
日志存放在:/var/log/apache2 tail -f -n 1000 access.log
python3 -m http.server 就是这个原理