#



# Some examples:



#ErrorDocument 500 "The server made a boo boo."



#ErrorDocument 404 /missing.html



#ErrorDocument 404 "/cgi-bin/missing_handler.pl"



#ErrorDocument 402
http://www.example.com/subscription_info.html



#



 



#



# MaxRanges: Maximum number of Ranges in a request before



# returning the entire resource, or one of the special



# values 'default', 'none' or 'unlimited'.



# Default setting is to accept 200 Ranges.



#MaxRanges unlimited



 



#



# EnableMMAP and EnableSendfile: On systems that support
it, 



# memory-mapping or the sendfile syscall may be used to
deliver



# files.  This usually improves server
performance, but must



# be turned off when serving from
networked-mounted 



# filesystems or if support for these functions is otherwise



# broken on your system.



# Defaults: EnableMMAP On, EnableSendfile Off



#



#EnableMMAP off



EnableSendfile



off



 



# AcceptFilter: On Windows, none uses accept() rather than
AcceptEx() and



# will not recycle sockets between connections. This is useful for
network



# adapters with broken driver support, as well as some virtual
network



# providers such as vpn drivers, or spam, virus or spyware
filters.



AcceptFilter



http none



AcceptFilter



https none



 



# Supplemental configuration



#



# The configuration files in the conf/extra/ directory can
be 



# included to add extra features or to modify the default
configuration of 



# the server, or you may simply copy their contents here and change
as 



# necessary.



 



# Server-pool management (MPM specific)



#Include conf/extra/httpd-mpm.conf



 



# Multi-language error messages



#Include conf/extra/httpd-multilang-errordoc.conf



 



# Fancy directory listings



Include



conf/extra/httpd-autoindex.conf



 



# Language settings



#Include conf/extra/httpd-languages.conf



 



# User home directories



#Include conf/extra/httpd-userdir.conf



 



# Real-time info on requests and configuration



#Include conf/extra/httpd-info.conf



 



# Virtual hosts



#Include conf/extra/httpd-vhosts.conf



 



# Local access to the Apache HTTP Server Manual



#Include conf/extra/httpd-manual.conf



 



# Distributed authoring and versioning (WebDAV)



#Include conf/extra/httpd-dav.conf



 



# Various default settings



#Include conf/extra/httpd-default.conf



 



# Configure mod_proxy_html to understand HTML4/XHTML1







proxy_html_module>



Include



conf/extra/proxy-html.conf







 



# Secure (SSL/TLS) connections



#Include conf/extra/httpd-ssl.conf



#



# Note: The following must must be present to support



#      
starting without SSL on platforms with no /dev/random
equivalent



#      
but a statically compiled-in mod_ssl.



#







ssl_module>



SSLRandomSeed



startup builtin



SSLRandomSeed



connect builtin







#



# uncomment out the below to deal with user agents that
deliberately



# violate open standards by misusing DNT (DNT *must* be a
specific



# end-user choice)



#



#



#BrowserMatch "MSIE 10.0;" bad_DNT



#



#



#RequestHeader unset DNT env=bad_DNT



#



 



 



#IncludeOptional "c:/wamp/vhosts/*"



Include



"c:/wamp/alias/*"

如何解决wamp中apache外部IP访问问题的更多相关文章

  1. SQL Server不能通过外部IP访问,解决方法

    SQL Server不能通过外部IP访问,解决方法   版本:SQL server 2008 express with tools   打开配置管理器,开启 TCP,右键属性设置TCP端口:   设置 ...

  2. 解决mysql中只能通过localhost访问不能通过ip访问的问题

    解决mysql中只能通过localhost访问不能通过ip访问的问题 原因是没开权限 SELECT * FROM USER WHERE USER='root'; grant all privilege ...

  3. Apache禁止ip访问

    网站突然让禁止ip访问,于是就通过配置Apache达到了想要的效果. 我们网站用的是Apache+tomcat集群,所以需要配置虚拟主机,虚拟主机我在这里就不说了,不明白的上网搜搜吧,这里只说禁止ip ...

  4. linux服务器NAT后无法在内网通过外部IP访问内部服务的问题

    场景一: 将外网访问192.168.100.10的80端口转发到192.168.75.5:8000端口. # iptables -t nat -A PREROUTING -d 192.168.100. ...

  5. CentOS7上解决tomcat不能被外部浏览访问的问题?

    在linux上开启的tomcat使用浏览器访问不了.主要原因在于防火墙的存在,导致的端口无法访问. CentOS7使用firewall而不是iptables.所以解决这类问题可以通过添加firewal ...

  6. apache禁止IP访问网站

    参考资料: http://www.cnblogs.com/zhuangge/archive/2011/04/13/2014892.html 先引用一下上面资料的内容: 用apache搭建的WEB服务器 ...

  7. Apache 禁用IP 访问 和 HTTP 跳转 HTTPS

    如果需要 禁用IP 访问并且 需要 HTTP 跳转到 HTTPS <VirtualHost *:80> ServerName xxx.xxx.com RewriteEngine On Re ...

  8. 解决wamp的Apache服务器不能重启

    由于工作需要,现在开始研究PHP语言.刚开始搭建服务器环境就困难重重啊.首先看了下配置说明,很复杂很复杂(超级想念Visual Studio).然后问了下群里的老鸟,他们都是安装WAMPServer环 ...

  9. 解决xmapp中Apache端口号占用问题

    [原]解决 "安装xmapp后Apache不能正常启动" 问题 小伙伴们安装xmapp后发现Apache不能正常开启,下面给出了不同情况的解决办法,可以分为以下几种情况分析问题: ...

随机推荐

  1. CSS 的优先级机制[总结]

    样式的优先级 多重样式(Multiple Styles):如果外部样式.内部样式和内联样式同时应用于同一个元素,就是使多重样式的情况. 一般情况下,优先级如下: (外部样式)External styl ...

  2. Javascript流程控制

    Javascript流程控制 1.条件语句 (1)if(exp)执行一句代码 (2)if(exp){执行代码段;} (3)if(exp){exp为true执行代码段}else{exp为false执行的 ...

  3. 微信小程序开发之picker

    一.绑定简单数组 通过bindChange控制index,使得当前选择值发生改变 示例1 data: { Data: ['A','B'], Index: 0, }, <picker class= ...

  4. 跟我一起读postgresql源码(八)——Executor(查询执行模块之——可优化语句的执行)

    2.可优化语句的执行 可优化语句的共同特点是它们被查询编译器处理后都会生成査询计划树,这一类语句由执行器(Executor)处理.该模块对外提供了三个接口: ExecutorStart.Executo ...

  5. Xposed 学习笔记

    Xposed框架用法 1.配置AndroidManifest.xml <meta-data android:name="xposedmodule" android:value ...

  6. linux网路编程:字节序(大端、小端、网络、主机)

    字节序:就是数据在内存中的存放顺序,也可称之为端模式. 大端模式和小端模式的定义 1) Little-Endian就是低位字节排放在内存的低地址端,高位字节排放在内存的高地址端. 2) Big-End ...

  7. MicroPython教程之TPYBoard v102 CAN总线通信

    0x00前言 CAN是控制器局域网络(ControllerAreaNetwork,CAN)的简称,是ISO国际标准化的串行通信协议.CAN总线结构简单,只需2根线与外部相连,并且内部集成了错误探测和管 ...

  8. python3基础(一)

    1. python文件主程序入口文件一般来要申明python路径,编码信息,作者说明等: #!/usr/bin/env python # _*_ coding: utf-8 _*_ # Author: ...

  9. DNN论文分享 - Item2vec: Neural Item Embedding for Collaborative Filtering

    前置点评: 这篇文章比较朴素,创新性不高,基本是参照了google的word2vec方法,应用到推荐场景的i2i相似度计算中,但实际效果看还有有提升的.主要做法是把item视为word,用户的行为序列 ...

  10. java.lang.Exception: 资源处理失败,失败原因:com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown column '?????‰' in 'where clause'

    1:Unknown column '?????‰' in 'where clause',这个问题,百度一搜,挺多的,但是貌似好像没有解决我的问题.贴一下我是如何拼接sql的.解决这个sql拼接bug的 ...