下面我将为你讲解CentOS6.5 web服务器apache的安装与基本设置的攻略。
安装Apache
- 安装httpd软件包
使用以下命令在终端中安装httpd软件包:
bash
yum install httpd
- 启动Apache
安装完成后,通过以下命令启动Apache:
bash
service httpd start
- 设置开机启动
启动Apache之后,使用以下命令将其设置为开机自启动:
bash
chkconfig httpd on
基本设置
- 设置网站根目录
打开Apache配置文件/etc/httpd/conf/httpd.conf
,找到以下位置:
DocumentRoot "/var/www/html"
<Directory "/var/www/html">
将DocumentRoot
和<Directory>
中的/var/www/html
改为网站根目录。例如,我想将网站根目录改为/home/user/www
,则改为:
DocumentRoot "/home/user/www"
<Directory "/home/user/www">
修改完后,重新启动Apache使其生效:
bash
service httpd restart
- 添加虚拟主机
打开Apache配置文件/etc/httpd/conf/httpd.conf
,找到以下位置:
#Listen 12.34.56.78:80
Listen 80
如果需要添加虚拟主机,则需要将#Listen
注释掉,并在下面添加如下配置:
```
NameVirtualHost *:80
DocumentRoot /home/user/www
ServerName www.example.com
ServerAlias example.com *.example.com
```
DocumentRoot
为网站根目录,ServerName
为主机名,ServerAlias
为别名。添加完后,保存文件并重启Apache:
bash
service httpd restart
以上就是CentOS6.5 web服务器apache的安装与基本设置的攻略了。示例说明:
- 将网站根目录改为
/home/user/www
:
DocumentRoot "/home/user/www"
<Directory "/home/user/www">
- 添加虚拟主机:
```
NameVirtualHost *:80
DocumentRoot /home/user/www
ServerName www.example.com
ServerAlias example.com *.example.com
```
希望以上的攻略和示例能帮助到你。如果还有什么不懂的,可以随时问我。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:CentOS 6.5 web服务器apache的安装与基本设置 - Python技术站