ubuntu apache2
配置
Posted in linux by wanguan2000 on the 08 月 15th, 2008
ubuntu apache2 配置
1.apache2.conf 是主配置文件,httpd.conf 用户配置文件
2.虚拟目录在 httpd.conf 中
<VirtualHost *>
DocumentRoot "路径"
ServerName 名称
<Directory "路径"> allow from all Options +Indexes </Directory>
</VirtualHost>
3.根设置(默认主目录)在 /etc/apache2/sites-available/default
4.重启命令
sudo /etc/init.d/apache2 restart 或者
cd /etc/init.d
sudo apache2 -k restart
stop 停止;start 启动 5.日志文件在 /var/log/apache2/
<VirtualHost *:80>
ServerName www.kimoqi.com
DocumentRoot /home/vsftpd/kimoqi
</VirtualHost>
<VirtualHost *:80>
ServerName www.arwenedu.com
DocumentRoot /home/vsftpd/wangguan/webapps
</VirtualHost>
<VirtualHost *:80>
ServerName www.arwenedu.org.cn
DocumentRoot /home/vsftpd/wangguan/chem
</VirtualHost>
vi /etc/httpd/conf/httpd.conf
在 Windows 下,Apache 的配置文件通常只有一个,就是 httpd.conf。但我在 Ubuntu Linux 上用 apt-get
install apache2 命令安装了 Apache2 后,竟然发现它的 httpd.conf(位于/etc/apache2 目录)是空的!进而发
现 Ubuntu 的 Apache 软件包的配置文件并不像 Windows 的那样简单,它把各个设置项分在了不同的配置
文件中,看起来复杂,但仔细想想设计得确实很合理。
严格地说,Ubuntu 的 Apache(或者应该说 Linux 下的 Apache?我不清楚其他发行版的 apache 软件包)的
配置文件是/etc/apache2/apache2.conf,Apache 在启动时会自动读取这个文件的配置信息。而其他的一些配
置文件,如 httpd.conf 等,则是通过 Include 指令包含进来。在 apache2.conf 中可以找到这些 Include 行:
引用
# Include module configuration:
Include /etc/apache2/mods-enabled/*.load
Include /etc/apache2/mods-enabled/*.conf
# Include all the user configurations:
Include /etc/apache2/httpd.conf
# Include ports listing
Include /etc/apache2/ports.conf
……
# Include generic snippets of statements
Include /etc/apache2/conf.d/
# Include the virtual host configurations:
Include /etc/apache2/sites-enabled/
结合注释,可以很清楚地看出每个配置文件的大体作用。当然,你完全可以把所有的设置放在