apache2之http服务ubuntu

记录apache2安装过程。

1.$sudo apt install -y apach2

2.$/etc/apach2/ports.conf   

   Listen 8001    //修改默认的端口80为8001

3.$/etc/apach2/sites-enabled/000-default.conf       //修改访问的端口和根目录

   <VirtualHost *:8001>     //默认是80,按需修改。

   DocumentRoot /Products    //默认是/var/www/html,按需修改。

4.$ /var/www/html/index.html    //删除默认的html网页文件

5.$sudo /etc/init.d/apache2 restart    //重启服务

6. 访问IP:8001;页面会提示你没有权限访问。因为这里改了默认的根目录,需要给新的目录授权。

7. /etc/apache2/apach2.conf    //如下箭头1位置的denied改成granted,增加箭头2的内容,为新的根目录/Products授权。

   

8.重启服务。

9.再次访问,正常。

结束。

 

posted @ 2022-11-08 09:56  巴州夜雨  阅读(66)  评论(0编辑  收藏  举报