Smart Home
1,Introduction
A smart home or building is a home or building, usually a new one, 继续阅读 »
1,Introduction
A smart home or building is a home or building, usually a new one, 继续阅读 »
下载flash:
wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
tar zxvf libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
配置chrome:
sudo cp libflashplayer.so /opt/google/chrome/plugins/
/opt/google/chrome/google-chrome –enable-plugins
配置firefox:
mkdir ~/.mozilla/plugins
cp libflashplayer.so ~/.mozilla/plugins
注:重启即可生效
本文采用的方式是使用Mac OS X 10.5.8自带的Apache和PHP,安装MySQL的dmg版本,以下操作非特殊说明均以root用户在命令行下进行。
启用root用户
1.打开“目录实用工具”,它位于“应用程序”文件夹的“实用工具”文件夹中。
2.点按锁图标以进行更改。您将需要输入管理员名称和密码。
3.选取“编辑”>“启用 Root 用户”。
4.为 root 用户输入安全密码,然后在“验证”栏再次输入它,最后点按“好”。
启用Apache
Mac OS X 10.5.8自带了Apache 2.2.9,直接在命令行运行apachectl start,Apache就搞定了。
现在Apache的主目录就是/Libary/WebServer/Documents/,你可以在这目录里放置文件测试了。
继续阅读 »
1、NGINX
Nginx的优点:
性能好,可以负载超过1万的并发。
功能多,除了负载均衡,还能作Web服务器,而且可以通过Geo模块来实现流量分配。
社区活跃,第三方补丁和模块很多
支持gzip proxy
缺点:
不支持session保持。
对后端realserver的健康检查功能效果不好。而且只支持通过端口来检测,不支持通过url来检测。
nginx对big request header的支持不是很好,如果client_header_buffer_size设置
的比较小,就会返回400bad request页面。
继续阅读 »