Ubuntu 下安装apache2服务器

安装

sudo apt install apache2 

修改端口

vim /etc/apache2/apache2.conf

vim /etc/apache2/sites-enabled/000-default.conf

把默认的80 改成自己需要的端口 我的改成了8000。

修改指定服务器主目录(静态web容器)

vim /etc/apache2/sites-enabled/000-default.conf 

把里面的DocumentRoot 后面的路径改成指定自己的目录 我的是 /usr/share/apache2/html
(这里新创建了html文件夹 并且修改了一下权限: chmod 777 html 用户都可以读写 上传文件)

重启apache2服务

 /etc/init.d/apache2 restart 

你可能感兴趣的:(Ubuntu 下安装apache2服务器)