网站首页 源码插件 正文
如果你像皮皮娃一样,使用阿里云ECS主机,或者类似的VPS,在使用Apache作为服务器的时候,一般都需要配置多虚拟主机。只跑一个网站太浪费主机资源了,除非你的这个站流量很大。在多虚拟主机同时运行的情况下,还有一个配置比较重要,就是给各个虚拟主机配置单独记录网站日志的功能。本文介绍如何在Apache环境下配置多虚拟主机各自单独记录网站日志。
进行如下配置的前提是,你的多虚拟主机已经配置成功了。下面的配置实例,说明了如何给多个虚拟主机配置单独记录网站日志功能(配置文件为httpd-vhosts.conf):
# Virtual Hosts
#
# Required modules: mod_log_config
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.4/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
##NameVirtualHost *:80
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ##ServerName or ##ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:80>
DocumentRoot "C:/maixj_sites/ppwxxw.com"
ServerName ppwxxw.com
ServerAlias www.ppwxxw.com
ErrorLog "|bin/rotatelogs.exe -l ../../mysites/ppwxxw.com/logs/error_%Y_%m_%d.log 86400"
CustomLog "|bin/rotatelogs.exe -l ../../mysites/ppwxxw.com/logs/access_%Y_%m_%d.log 86400" combined
</VirtualHost>
<VirtualHost *:80>
DocumentRoot "C:/maixj_sites/wpchajian.cn"
ServerName wpchajian.cn
ServerAlias www.wpchajian.cn
ErrorLog "|bin/rotatelogs.exe -l ../../mysites/wpchajian.cn/logs/error_%Y_%m_%d.log 86400"
CustomLog "|bin/rotatelogs.exe -l ../../mysites/wpchajian.cn/logs/access_%Y_%m_%d.log 86400" combined
</VirtualHost>
请注意以上配置高亮部分。这个配置同时还实现了让网站每天生成新日志文件的功能。
猜你喜欢
- 2020-07-13 SEO之原创图片
- 2020-07-13 如何将顶级域名做301重定向
- 2020-07-13 WP Super Cache插件会自动关闭ETag
- 2020-07-13 把CSS放在head的最前面
- 2020-07-13 把CSS放在head的最前面
- 2020-07-13 MaxRequestWorkers(原MaxClients)
- 2020-07-13 网站内链优化实践分享
- 2020-07-13 百度搜索引擎如何衡量网页浏览体验
- 2020-07-13 其实可以不用开启PHP的GZIP?
- 2020-07-13 名词学习:UGC
取消回复欢迎 你 发表评论:
- 搜索
- 最新文章
-
- 2020最新ECSHOP仿美乐乐商城模板第二版 ECSHOP家居建材商城模板
- 神器---- 解锁苹果/ id、密码、屏幕密码PassFab 1.0
- 超好用的卸载工具 IObit Uninstaller RC v10.0.2.20 激活版
- 县官不如现管!广西一村支书跷腿接待反映问题的村民,现被停职
- 狗主人背锅?不知悔改!毫无忏悔之心,顺德牵狗女孩竟称不在乎别人评价:爱怎么评价就怎么评价
- 丧心病狂令人愤怒,一陕西宝鸡男子酒后摔打两岁半幼子,孩子经抢救无效死亡
- 风雨欲来-拜登正式接受美国民主党总统候选人提名
- 【冒险解谜】经典游戏最新版《银河历险记3》v1.476.0免安装中文版
- 最新讯飞有声2.3.3033去升级纯净版
- (8.20更新)最新优酷视频PC电脑版 v8.0.3.8190 去除广告本地VIP绿色特别版
本文暂时没有评论,来添加一个吧(●'◡'●)