目标:在Apahe环境下配置可以通过域名直接访问网站
具体操作:
1.Apache目录具体介绍:
Apache2的各个文件夹介绍
配置文件的位置:/etc/apache2
lib文件的位置:/usr/lib
启动文件的位置:/etc/init.d/apache2
网页存放位置:/var/www/html
软件所在位置:/usr/share/apache2
1.将具体的网站工程文件放在/var/www/html目录下:
网站工程2.进入sites-available目录,路径:etc/apache2/sites-available
新建虚拟域名配置文件用vim 打开该文件,作如下修改:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/station
ServerName www.gunda.com.cn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
保存退出
3.建立软链接
切换目录:/etc/apache2/sites-enabled
终端输入命令:
sudo ln -s /etc/apache2/sites-available/gunda.conf gunda.conf
在sites-enabled目录下会形成一个软链接文件gunda.conf,如图:
软链接文件4.浏览器输入:域名,测试
备注:
对于Apache和Tomcat的分工:
Apache主要处理静态网页的展示,资源目录:/var/www/html;
Tomcat主要用于处理后台服务,资源目录:webapps
网友评论