lighttpd配置压缩文件(mod_compress)
javascript
python
shell
powershell
python模块
php编程
php实例
asp.net
正则表达式
nginx
apache
linux
linux命令
centos
ubuntu
mysql
sql数据库
css教程
首页
脚本编程
网站编程
数据库
系统管理
服务器管理
网页教程
软件教程
电脑教程
手机教程
工具软件
电子书籍
php实例
shell脚本
jquery选择器
python模拟登录
linux命令
nginx
apache
当前位置:
首页
>
服务器配置
>
Lighttpd
> 正文
lighttpd配置压缩文件(mod_compress)
发布时间:2020-11-11
编辑:
脚本学堂
lighttpd配置压缩文件(mod_compress)
在页面中使用
gzip
可以有效的减低页面的大小,加快网页的下载速度。
在lighttpd中对php页面进行压缩,需要两个步骤:
1. 编辑 lighttpd.conf
复制代码
代码如下:
将 “mod_compress” 设为启用
接着找到
## compress module
在下面加入:
compress.cache-dir = “/var/tmp/lighttpd/cache/”
compress.filetype = (”text/plain”, “text/html”, “text/css”, “text/
javascript
”)
做完上面的动作后,基本上 .txt .html .css .js 的文件都会被Gzip压缩了。但php此时还没有压缩。
对于动态的
php文件
,还需要在php.ini中做相关设置,否则.php页面还是不使用压缩模式。
2. 编辑 php.ini
复制代码
代码如下:
修改
zlib.output_compression = On
zlib.output_handler = On
实现php的压缩,重启Lighttpd,配置生效。
上一篇:
lighttpd中配置FastCGI环境
下一篇:
Lighttpd搭建Flv可拖拽媒体服务器的教程
与 lighttpd配置压缩文件(mod_compress) 有关的文章
lighttpd中配置FastCGI环境
lighttpd配置https
lighttpd配置url重写一例
lighttpd安装与配置图片服务器
Lighttpd搭建Flv可拖拽媒体服务器的教程
lighttpd与web.py配置web service
awstats+Lighttpd配置
lighttpd配置用户验证(mod_auth模块)
Lighttpd 配置与性能优化
Lighttpd常用配置方法
Ubuntu中安装和配置lighttpd
本文标题:
lighttpd配置压缩文件(mod_compress)
本页链接:
http://www.jb200.com/article/938.html
浏览排行
1
lighttpd配置https
2
lighttpd安装与配置图片服务器
3
Lighttpd搭建Flv可拖拽媒体服务器的教程
4
lighttpd与web.py配置web service
5
lighttpd配置url重写一例
6
Lighttpd 配置与性能优化
7
lighttpd中配置FastCGI环境
8
lighttpd配置用户验证(mod_auth模块)
9
Lighttpd常用配置方法
10
Ubuntu中安装和配置lighttpd
栏目分类
nginx
apache
IIS服务器
Lighttpd
DNS服务器
文件服务器
邮件服务器
数据库服务器
应用加速
集群与高可用
监控与日志
其它教程
栏目导航
脚本
服务器
数据库
python
linux
linux命令
shell脚本
javascript
javascript数组
jquery
jquery选择器
jquery事件
jquery菜单
python列表
python爬虫
python模拟登录
php编程
php教程
php面试题
php随机数
php数组
php分页
php正则
php排序
asp.net
批处理
正则表达式
mysql
mysql分页
mysql存储过程
mysql日志
mysql教程
sql数据库
nginx
apache
手机教程
热点文章
1
Lighttpd搭建Flv可拖拽媒体服务器的教程
2
lighttpd安装与配置图片服务器
关于本站
|
网站地图
|
联系我们
|
免责声明
|
友情链接
鄂ICP备13010364号-22
CopyRight © 2010-2021
脚本学堂
Jb200.com , All Rights Reserved.