当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > linux构建动态WEB服务器配置篇

Unix/Linux
vmware 网络设置三:理解虚拟网络的类型
Linux操作系统文件管理器的共享
享受便利的应用方式—Linux系统三则超酷技巧
请问在Linux怎么安装东西
Linux操作系统中BSD套接口开发的基础介绍
出错也不怕—Linux系统紧急情况处理方法
浅析Linux操作系统登录帐户的管理和审计
Linux新手精彩问答
Linux 内核的类型
Linux 常用命令(其它)
Linux 常用命令(改变文件或目录的访问权限)
Linux 常用命令(备份与压缩)
Linux 常用命令(在Linux环境下运行DOS命令)
Linux 常用命令(用户有关)
Linux 常用命令(磁盘管理)
Linux 常用命令(文本处理)
Linux 常用命令(录的创建与删除)
DOS 和 Linux 常用命令的对比
Linux 常用命令(进入与退出系统)
Linux 常用命令(文件的复制、删除和移动)

Unix/Linux 中的 linux构建动态WEB服务器配置篇


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-15   浏览: 102 ::
收藏到网摘: n/a

Apache配置文件
重要配置选项
ServerRoot 服务器运行的根目录
MaxClients 能同时访问服务器的客户机数量
DocumentRoot 服务器共享文件的起始位置
listen 服务器监听的端口
ServerAdmin 管理员的信箱
User&Group 服务器运行者的身份
ErrorLog 出错日志文件
DirectoryIndex 默认文件夹索引文件
AddDefaultCharset 默认返回页面的编码
Alias 为目录设置访问别名
查看Apache内部默认模块 /usr/local/apache2/bin/httpd -l

目录控制语句
<Directory /> #默认根目录
Options Indexes Follow Symlink #可以使用index文件
AllowOverride None #不能被复盖
</Director>
以上没有权限语句,所有向上的访问都不能执行
<Directory /usr/local/apache2/htdocs>
Options Follow Symlink
AllowOverride None #不能被复盖
Order allow.deny
Allow from all #任何地址都能访问,Allow,Deny
</Directory>
测试CGI
配置文件选项
ScriptAlias /cgi-bin “/usr/local/apache2/cgi-bin/”
编写cgi文件
/usr/local/apache2/cgi-bin/<cgifile>
确认cgi程序是apache用户可以执行的
#chgrp apache /usr/local/apache2/cgi-bin/<cgifile>
#chmod 750 /user/local/apache2/cgi-bin/<cgifile>
测试cgi程序的执行效果
#links http://localhost/cgi-bin/<cgifile>

激活SSL模块
创建私钥和证书文件
#cd /etc; mkdir ssl.crt server.key
#openssl genrsa -out /etc/ssl.key/server.key 1024
#openssl req -new -x509 -key \
/etc/ssl.key/server.key -out /etc/ssl.crt/server.crt
编辑/etc/ssl.conf
重新启动web服务器
#/usr/local/apache2/bin/apachectl stop
#/usr/local/apache2/bin/apachectl startssl
(修改启动脚本/etc/rc.local中的相应的命令)