网站制作

本类阅读TOP10

·IIS 安装配置全攻略
·html基础学习笔记(2)
·html基础学习笔记(1)
·用VS.NET打开网上下载的.NET web项目出错的解决办法
·如何在网页上实现进度条
·限制TextArea区的文字输入数量
·HTML 4.0 语言快速参考
·在weblogic上配置SSL
·页面垂直居中的两种方法
·Zope/Plone内容管理系统的探讨与应用-内容管理系统(CMS)的概述

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
配置Apache及运行perl,php

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

//检测配置文件语法

# httpd –t

# apachectl configtest

//查看编译配置参数

# apachectl –V

//查看已经编译的模块

# apachectl –l

//查看参数

# apache -

//查看配置文件信息

# grep –v “#” /etc/httpd/conf/httpd.conf

//运行CGI

//模块配置

<IfModule prefork.c>

LoadModule cgi_module modules/mod_cgi.so

</IfModule>

//目录配置

<Directory "/var/www/cgi-bin">

    AllowOverride None

    Options ExecCGI -Indexes

    Order allow,deny

    Allow from all

</Directory>

AddHandler cgi-script .cgi .pl

//运行perl

//配置/etc/httpd/conf.d/perl.conf

LoadModule perl_module modules/mod_perl.so

 

# This will allow execution of mod_perl to compile your scripts to

# subroutines which it will execute directly, avoiding the costly

# compile process for most requests.

#

Alias /perl /var/www/perl

<Directory /var/www/perl>

    SetHandler perl-script

    PerlHandler ModPerl::Registry::handler

    PerlOptions +ParseHeaders

    Options +ExecCGI

</Directory>

//运行PHP

curlgdphpphp-imapphp-manualphp-mysql

//配置文件

LoadModule php4_module modules/libphp4.so

 

#

# Cause the PHP interpreter handle files with a .php extension.

#

<Files *.php>

    SetOutputFilter PHP

    SetInputFilter PHP

    LimitRequestBody 524288

</Files>

 

#

# Add index.php to the list of files that will be served as directory

# indexes.

#

DirectoryIndex index.php

//日志分析研究

<Directory "/var/www/html/usage">

    AuthType Basic

    AuthName "Admin"

    AuthUserFile /var/www/passwd/jamond //认证口令文件

AuthGroupFile /var/www/passwd/admingrp //认证组文

    require valid-user //授权给认证口令文件夹中所有用户

</Directory>

# htpasswd –c auth lishujiang  //添加用户

#chown apache.apache auth

如果有什么问题,请发邮件: webmaster@bcxy.com




相关文章

相关软件




月光软件程序下载编程文档电脑教程网站设计网址导航网络文学游戏天地幽默笑话生活休闲写作范文安妮宝贝
电脑技术编程开发网络专区谈天说地情感世界游戏元素分类游戏热门游戏体育运动手机专区业余爱好影视沙龙
音乐天地数码广场教育园地科学大观古今纵横谈股论金人文艺术医学保健动漫图酷二手专区地方风情各行各业

月光软件站·版权所有