`
抢街饭
  • 浏览: 45346 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

Apache2.2配置以及端口配置(笔记)

阅读更多
F:\work\php5.2
libmysql.dll文件
C:\WINDOWS\system32

注意
short_open_tag = Off

各种驱动
F:\work\instantclient_10_2;C:\Program Files\StormII\Codec;C:\Program Files\StormII;C:\Program Files\SSH Communications Security\SSH Secure Shell

extension=php_mysql.dll
extension=php_oci8.dll
extension=php_soap.dll
去掉;


F:\work\apache2.2\conf
httpd.conf文件


#Listen 12.34.56.78:80
Listen 80
Listen 81

<Directory "F:/work/apache2.2/htdocs">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all

</Directory>  
<Directory "F:/work/apache2.2/web">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all

</Directory>

Include conf/extra/httpd-vhosts.conf  去掉注释

httpd-vhosts.conf文件

NameVirtualHost *:80
NameVirtualHost *:81

<VirtualHost *:81>
    ServerAdmin webmaster@dummy-host.www.calendar.com
    DocumentRoot "F:/work/apache2.2/web/"
    ServerName dummy-host.www.calendar.com
    ServerAlias www.dummy-host.www.calendar.com
    ErrorLog "logs/dummy-host.www.calendar.com-error.log"
    CustomLog "logs/dummy-host.www.calendar.com-access.log" common
</VirtualHost>
<VirtualHost *:80>
    ServerAdmin webmaster@dummy-host.www.calendar.com
    DocumentRoot "F:/work/apache2.2/htdocs/"
    ServerName dummy-host.www.calendar.com
    ServerAlias www.dummy-host.www.calendar.com
    ErrorLog "logs/dummy-host.www.calendar.com-error.log"
    CustomLog "logs/dummy-host.www.calendar.com-access.log" common
</VirtualHost>
分享到:
评论

相关推荐

    一键lamp(apache2.2+mysql5.1+php5.3)

    下面我们将深入探讨这些组件以及如何通过一键安装脚本来配置它们。 首先,Linux作为开源的操作系统,被广泛应用于服务器领域,因为它提供了稳定性和安全性。在这个场景中,我们使用的可能是Ubuntu、CentOS或Debian...

    一键lamp(apache2.2+mysql5.5+php5.3)-详细笔记文档总结-带安装包

    本笔记文档将详细介绍如何在Linux系统上快速安装Apache 2.2、MySQL 5.5和PHP 5.3,形成一个功能完备的LAMP环境。 **一、Linux系统准备** 在开始安装之前,确保你的Linux系统已经更新到最新版本,以获取最新的安全...

    Win7下手动安装apache2.2、php5.4笔记

    打开Apache的配置文件d:\www\apache2.2\conf\httpd.conf,需要在文件最底部添加一些配置行以加载PHP模块和支持PHP文件的MIME类型。这些配置包括加载PHP模块、加载必要的文件以及设置PHP的配置文件路径和文件类型等。...

    apache2.2.22for linux

    在压缩包中,"softhy.net.txt"可能包含了关于如何在Linux环境下安装和配置Apache 2.2.22的教程或笔记,而"httpd-2.4.2"可能是Apache的更高级版本,可能包含了一些新功能和优化。"洪越源代码--更多免费精品商业源码....

    Apache服务器

    `mywork.txt` 可能是用户在Apache服务器环境下进行的个人工作文件,可能包含了配置信息、笔记或其他与Apache相关的文本内容。由于没有具体说明,我们无法详细解读其内容,但通常这类文件会帮助用户记录配置步骤或...

    Tomcat学习笔记

    本笔记将详细阐述Tomcat的安装、配置、虚拟主机设置、JDBC数据库连接池配置以及安全域 Realm 的配置与应用。 1、安装、启动及自动启动 Tomcat 在Windows环境下,可以下载Tomcat的zip或exe文件,解压到指定目录。...

    apache-tomcat-7.0.47.rar

    "Xufuli.txt"看起来是一个额外的文本文件,其内容可能与Apache Tomcat的安装、配置或使用指南有关,或者可能是用户的个人笔记。在部署和配置Tomcat时,这样的文本文件可能会提供额外的步骤、提示或最佳实践。 在...

    ngnix+tomcat负载聚合配置笔记

    它以其稳定性、丰富的功能集、简单的配置文件以及较低的内存消耗而著称。Nginx不仅能够作为反向代理、负载均衡器,还可以用作缓存服务器和安全网关。 ##### 2.2 为何选择Nginx - **高性能**:Nginx采用了异步事件...

    Apache_Mina2.0学习笔记(初版).doc

    客户端程序则需要初始化IoConnector,配置连接参数,如服务器地址和端口,然后建立连接并实现IoHandler以处理与服务端的数据交互。 #### 第五步. 长连接VS短连接 长连接是指连接一旦建立,就会保持一段时间,期间...

    PHP学习笔记(二) 了解PHP的基本语法以及目录结构

    通过这节课, 1.了解AppServ的目录结构 ...AppServ\Apache2.2\conf 中的 httpd.conf(主配置文件) ②运用命令行的方式操作mysql数据库 Mysql数据库的开启和关闭: net stop mysql //关闭数据库 net s

    个人Linux整理笔记:高级服务篇

    - 2.x系列,包含2.0和2.2,提供了更多的特性,但配置方式与1.x有所不同。 Apache的目录结构如下: - `/usr/local/httpd/bin`:存放可执行文件,如httpd。 - `/usr/local/httpd/conf`:存放配置文件,如httpd.conf。...

    Apache ActiveMQ学习笔记【原创:mq的方式有两种:点到点和发布/订阅】

    ### Apache ActiveMQ 学习笔记 #### 一、ActiveMQ简介与安装 ##### 1.1 ActiveMQ概述 Apache ActiveMQ 是一个完全支持 JMS 1.1 和 J2EE 1.4 规范的消息服务器。它适用于 Java 消息服务 (JMS),并且是一个开源项目...

    Linux下安装Tomcat8.0.45笔记

    - **配置文件**: 编辑`/usr/local/apache-tomcat-8.5.24/conf/tomcat-users.xml`文件,添加管理员账户信息。 **5.2 部署WAR包** - **自动部署**: 直接将WAR包放入`/usr/local/apache-tomcat-8.5.24/webapps`目录下...

    实验4 操作手册 基于Spark MLlib的开源软件项目流行度预测1

    确保Zeppelin服务器地址和允许的源配置正确,特别是当部署在华为云时,需要配置公网IP和开放相应端口。此外,认证配置也需要根据需求进行设置,例如添加用户。 #### 3.4 问题修复 如果遇到由于Zeppelin自带jar包与...

    ELK学习笔记.docx elasticsearch logstash kibana 环境搭建开发

    - **修改/etc/nginx/nginx.conf**:设置Nginx监听端口及反向代理配置。 - **创建/etc/nginx/conf.d/kibana.conf文件**:配置反向代理。 - **启动nginx并添加到开启自启动服务**:`systemctl start nginx`,`...

    一些有用的测试基础笔记

    **2.2 安装与配置** - **环境要求:** 必须安装在服务器版的操作系统上,如Windows Server 2003/2008。 - **安装过程:** 涉及服务器的配置、数据库连接设置等。 - **访问方式:** 通常通过HTTP协议访问,如`...

    Mina2.0学习笔记(重点)

    ### Mina2.0 学习笔记(重点) #### 一、Mina入门 ##### 第一步:下载使用的Jar包 1. **Mina核心库**:登录Mina官网下载`mina2.0.1.zip`,解压后得到`mina-core-2.0.0-M1.jar`。 2. **日志框架SLF4J**:访问SLF4J...

Global site tag (gtag.js) - Google Analytics