- 1、本文档共14页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
网络技术应用网
网络技术应用网
网络技术应用
网络技术应用 591
Linux 服务器配置大全
一: DNS 服务器的设置
编辑/etc/named.conf
// generated by named-bootconf.pl
options {
directory /var/named;
/*
If there is a firewall between you and nameservers you want
to talk to, you might need to uncomment the query-source
directive below. Previous versions of BIND always asked
questions using port 53, but BIND 8.1 uses an unprivileged
port by default.
*/
// query-source address * port 53;
};
//
// a caching only nameserver config
// controls {
inet allow { localhost; } keys { rndckey; };
};
zone . IN { type hint;
file named.ca;
};
zone IN { type master;
file ; allow-update { none; };
};
zone 1.168.192. IN {
type master;
file .rev; allow-update { none; };
};
zone localhost IN { type master;
file localhost.zone; allow-update { none; };
};
zone 0.0.127. IN { type master;
file named.local; allow-update { none; };
};
include /etc/rndc.key;
编辑正向解析文件/var/named/
$TTL 86400
@ IN SOA . . ( 1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire 86400 ) ; Minimum
IN NS .
IN MX 10 .
my IN A 0
www IN CNAME . ftp IN CNAME . smtp IN CNAME . pop3 IN CNAME .
网络技术应用网
网络技术应用网
网络技术应用
网络技术应用 591
编辑反向解析文件/var/named/.rev
$TTL 86400
@ IN SOA . . ( 1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire 86400 ) ; Minimum
IN NS .
50 IN PTR .
编辑/var/named/named.local 文件
$TTL 86400
@ IN SOA . . ( 1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire 86400 ) ; Minimum
IN NS . 1 IN PTR localhost.
编辑/etc/resolv.conf
# MADE-BY-RP-PPPOE
domain nameserver 0 search localdomain
二: web 服务器的设置
只需对/etc/httpd/conf/httpd.conf 进行部分修改即可
ServerTokens OS
ServerRoot /etc/httpd 注:指定守护进程 httpd 的运行目录
PidFile run/httpd.pid
Timeout 300 注:定义客户程序和服务器连接的超时间隔
KeepAlive Off 注:定义是否支持一次连接,多次传输功能
MaxKeepAliveRequests 100 注:一次连接可以进行的 HTTP 请求的最大请求次数
KeepAliveTimeout 15 注:一次连接中的多次请求传输之间的时间
MaxRequestsPerChild 0 注:每个子进程处理服务请求次数 0 为无限次
Listen 80
User apache 注:指定用户和组
Group apache
ServerAdmin nangshou@ 注:服务器管理员的
E_MAIL 地址
#ServerName
文档评论(0)