我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Linux服务器---apache配置文件

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Linux服务器---apache配置文件

Apache  配置文件

Apache  的配置文件默认路径是“  /etc/httpd/conf/httpd.conf  ”,编辑该文件就可以修改Apache的配置     

1  、设置网页主目录,参数DocumentRoot就是网页存放的主目录。打开配置文件httpd.conf,查找DocumentRoot(大约292行)

[root@localhost ~]#   gedit   /etc/httpd/conf/httpd.conf 

# DocumentRoot: The directory out of which you will serve your

# documents. By default, all requests are taken from this directory, but

# symbolic links and aliases may be used to point to other locations.

DocumentRoot "/var/www/html"   //  当前默认是在  "/var/www/html"  目录下,所有的网页必须放在这里 

2  、设置连接端口,通过参数listen来设置连接的端口,默认80.(大约136行)

[root@localhost ~]#   gedit   /etc/httpd/conf/httpd.conf 

# Listen: Allows you to bind Apache to specific IP addresses and/or

# ports, in addition to the default. See also the <VirtualHost>

# directive.

#

# Change this to Listen on specific IP addresses as shown below to 

# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)

#

#Listen 12.34.56.78:80

Listen 80

3  、设置连接超时,参数timeout,当连接超过一定的空闲时间,就会自动断开。(大约68行)

# Timeout: The number of seconds before receives and sends time out.

#

Timeout 60

4  、设置字符集,参数  AddDefaultCharset  ,建议最好设置utf-8,这是通用的。(大约753行)

# Specify a default charset for all content served; this enables

# interpretation of all content as UTF-8 by default.  To use the 

# default browser choice (ISO-8859-1), or to allow the META tags

# in HTML content to override this choice, comment out this

# directive:

#

AddDefaultCharset UTF-8

5  、设置服务器名称,参数ServerName。这是服务器的域名,必须有dns解析才可以访问。如果你没有合法的域名,那么只能通过ip地址来访问

# ServerName gives the name and port that the server uses to identify itself.

# This can often be determined automatically, but we recommend you specify

# it explicitly to prevent problems during startup.

#

# If this is not set to valid DNS name for your host, server-generated

# redirections will not work.  See also the UseCanonicalName directive.

#

# If your host doesn't have a registered DNS name, enter its IP address here.

# You will have to access it by its address anyway, and this will make 

# redirections work in a sensible way.

#

#ServerName www.example.com:80

6  、设置keepalive,提高网络效率,默认是关闭的。(大约76行)

# KeepAlive: Whether or not to allow persistent connections (more than

# one request per connection). Set to "Off" to deactivate.

#

KeepAlive Off

7  、设置keepaliverequest,设置为0 的时候没有限制,不过最好还是用默认值,或者自己根据情况来改变。(大约83行)

# MaxKeepAliveRequests: The maximum number of requests to allow

# during a persistent connection. Set to 0 to allow an unlimited amount.

# We recommend ou leave this number high, for maximum performance.

#

MaxKeepAliveRequests 100                          

  转自 http://blog.itpub.net/29270124/viewspace-2220980/如有侵权,联系删除。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Linux服务器---apache配置文件

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

linux如何配置apache服务器

要配置Apache服务器,您可以按照以下步骤操作:1. 安装Apache服务器:在终端中运行以下命令来安装Apache服务器:```sudo apt updatesudo apt install apache2```2. 配置防火墙:如果您
2023-08-28

Linux服务器---配置apache支持php

apache支持phpphp是最好用的服务器语言了,Apache对php有很强大的支持 1、检测是否安装php,如果什么信息也没有,那么你就要自己安装php了[root@localhost ~]# rpm -qa | grep php
2023-06-06

Linux怎么安装配置Apache服务器

这篇文章主要介绍“Linux怎么安装配置Apache服务器”,在日常操作中,相信很多人在Linux怎么安装配置Apache服务器问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Linux怎么安装配置Apache
2023-06-28

Linux上怎么配置Apache Web服务器

要在Linux上配置Apache Web服务器,您可以按照以下步骤进行操作:安装Apache服务器:在终端中输入以下命令来安装Apache服务器:sudo apt updatesudo apt install apache2启动Apach
Linux上怎么配置Apache Web服务器
2024-04-28

Apache如何配置静态文件的服务

要配置Apache服务器来提供静态文件服务,需要在Apache的配置文件中添加以下几行代码:首先要确保Apache已经安装和启动了。然后找到Apache的配置文件,通常在 /etc/apache2/apache2.conf 或 /etc/h
Apache如何配置静态文件的服务
2024-07-05

linux服务器dns怎么配置文件

要配置Linux服务器的DNS,需要修改以下文件:1. /etc/resolv.conf:这个文件包含了要使用的DNS服务器的IP地址。可以使用以下命令打开该文件:```sudo nano /etc/resolv.conf```在文件中添加
2023-08-31

云服务器Apache配置

1.安装Apache服务器首先,你需要在你的云服务器上安装Apache服务器。你可以使用以下命令在Ubuntu系统上安装Apache:sudoaptupdatesudoaptinstallapache22.配置Apache服务器一旦安装完成,你可以开始配置Apache服务器以满足你的需求。以下是一些常见的配置选项:2.
2023-10-27

Linux安装apache服务器的配置过程

准备这些包安装 查看是否已经安装过apacherpm -qa |grep httpd卸载apacherpm -e -TeLgNPNI-nodepshttpd(-nodeps 是忽略该软件的依赖关系) 建立rpm包存放文件夹cd / mkdi
2022-06-04

Linux服务器中如何配置apache支持ssl

Linux服务器中如何配置apache支持ssl,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。Apache支持ssl1、检测是否安装ssl模块,如果没有就安装[root@loc
2023-06-06

关于linux服务器hosts文件配置详解

linux服务器hosts文件配置 hosts文件是Linux系统中一个负责IP地址与域名快速解析的文件,以ASCII格式保存在“/etc”目录下,文件名为“hosts”。 hosts文件包含了IP地址和主机名之间的映射,还包括主机
2022-06-04

Linux下Apache服务的部署和配置

目录1 Apache的作用2 Apache的安装3 apache的启用4 apache的基本信息5 apache的访问控制5.1 基于客户端ip的访问控制5.2 基于用户认证的访问控制6 apache的虚拟主机7 apache的加密访问8
2022-06-04

Apache配置文件如何编辑

要编辑Apache配置文件,您可以按照以下步骤操作:打开终端或命令提示符窗口。使用文本编辑器(如vi、nano、gedit等)打开Apache配置文件。配置文件通常位于/etc/apache2/apache2.conf或/etc/http
Apache配置文件如何编辑
2024-07-04

Apache的robots.txt文件如何配置

Apache服务器的robots.txt文件可以通过在网站的根目录下创建一个名为robots.txt的文本文件来配置。以下是一个示例robots.txt文件的配置示例:User-agent: *Disallow: /private/D
Apache的robots.txt文件如何配置
2024-07-05

编程热搜

目录