Ubuntu#Apache搭建web服务器

1.安装Apache

终端输入:sudo apt-get install apache2

2.Apache安装完成

Apache的默认安装目录为/var
默认的网站根目录为/var/www/html

3.配置Apache

打开apache2.conf配置文件
sudo gedit /etc/apache2/apache2.conf
在打开的apache2.conf文件末尾添加如下信息:
#ServerName
ServerName 127.0.0.1

4.重启Apache

sudo /etc/init.d/apache2 restart

你可能感兴趣的:(Ubuntu#Apache搭建web服务器)