您的位置:首页 > 运维架构 > 网站架构

视频网站的一些布置细节

2009-11-17 16:10 211 查看
1. 安装软件,配置环境。

php要安装mysql扩展支持。要安装GD Library, 使用yum install php-gd.

pure-ftp要创建virtual user, 给予最小权限。 当登陆成功后,获取文件列表失败(操作超时)的时候,要考虑服务器防火墙的因素。

Enable URL rewrite: 修改httpd.conf

we may enable htaccess files by editing our httpd.conf rewmoving the comment on line from

;LoadModule rewrite_module modules/mod_rewrite.so

to

LoadModule rewrite_module modules/mod_rewrite.so

we need to change the AllowOverride directive also from

<Directory />

Options FollowSymLinks

AllowOverride None

Order deny,allow

Deny from all

Satisfy all

</Directory>

to

<Directory />

Options FollowSymLinks

AllowOverride All

Order deny,allow

Deny from all

Satisfy all

</Directory>

2. 上传文件。 除了.htaccess文件需用ASCII类型上传,其余文件都是默认(即Binary, 尤其是图片和flash播放器文件,字体文件)

3. 在观看视频的页面新加一项功能 lightoff。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: