1.什么是apachehtml
Apache是世界使用排名第一的Web服务器软件。它能够运行在几乎全部普遍使用的计算机平台上,因为其跨平台和安全性被普遍使用,是最流行的Web服务器端软件之一。它快速、可靠而且可经过简单的API扩充,将Perl/Python等解释器编译到服务器中。同时Apache音译为阿帕奇,是北美印第安人的一个部落,叫阿帕奇族,在美国的西南部。httpd是Apache超文本传输协议(HTTP)服务器的主程序mysql
lamp=linux apache mysql phplinux
lnmp=linux nginx mysql phpnginx
虽然nginx(nginx提供共享)性能更好,可是不是开源web
相关命令sql
curl -I www.baidu.com(域名) 查看域名使用的信息apache
nmap 网络扫描vim
yum install nmap -y 浏览器
nmap -A www.xupt.ed 在国外此命令违法
2.配置apache
①server端配置
hostnamectl set-hostname web1.westos.com
yum install httpd -y
cd /var/www/html/
systemctl start httpd
vim /etc/httpd/conf/httpd.conf
163 <IfModule dir_module>
164 DirectoryIndex index.html file
165 </IfModule>
在配置文件中,index.html和 file文件,哪一个在前,在浏览器中优先看哪一个,若都没有,则浏览器显示界面为apache测试页面
yum install httpd-manual.noarch -y httpd使用手册
●更改默认发布目录:
将默认发布目录/var/www/html/改成/www/westos
[root@web1 ~]# cd /var/www/html/
[root@web1 html]# getenforce
Enforcing
[root@web1 html]# ls -Zd .
drwxr-xr-x. root root system_u:object_r:httpd_sys_content_t:s0 .
[root@web1 html]# mkdir /www/westos -p
[root@web1 html]# semanage fcontext -a -t httpd_sys_content_t '/www/westos(/.*)?'
[root@web1 html]# restorecon -RvvF /www/
restorecon reset /www context unconfined_u:object_r:default_t:s0->system_u:object_r:default_t:s0
restorecon reset /www/westos context unconfined_u:object_r:default_t:s0->system_u:object_r:httpd_sys_content_t:s0
[root@web1 html]# cd /www/westos/
[root@web1 westos]# vim index.html 编辑内容为/www/westos's page
[root@web1 westos]# vim /etc/httpd/conf/httpd.conf 修改内容为:
119 #DocumentRoot "/var/www/html"
120 DocumentRoot "/www/westos"
121 <Directory "/www/westos">
122 require all granted
123 </Directory>
[root@web1 westos]# systemctl restart httpd.service
在server浏览器中输入http://172.25.254.149 获得 /www/westos's page 表示更改为功
●端口:
[root@web1 westos]# ss -antlp | grep httpd
LISTEN 0 128 :::80 :::*
[root@web1 westos]# vim /etc/httpd/conf/httpd.conf
41 #Listen 12.34.56.78:80
42 Listen 80 默认为80端口
http://ip:80也可不加80通常默认
若改变为Listen 8080,则在浏览器中输入http://ip:8080
但8080端口容易被***利用***,慎用。
●访问权限黑白名单
[root@web1 westos]# vim /etc/httpd/conf/httpd.conf
120 DocumentRoot "/www/westos"
121 <Directory "/www/westos">
122 require all granted
123 Order Deny,Allow **谁在前,先读谁,通常Allow在前
124 Allow from 172.25.254.0/24 **容许172.25.254.x网段全部人访问
125 Deny from ALL **拒绝全部人访问
126 </Directory>
[root@web1 westos]# systemctl restart httpd.service
●设置用户访问权限
vim /etc/httpd/conf/httpd.conf
121 <Directory "/www/westos">
122 Require all granted
123 AllowOverride all
124 Authuserfile /etc/httpd/htpasswdfile 用户信息所在文件
125 Authname "Please input username and password" 提示信息
126 Authtype basic 基本认证类型
127 Require user admin 只容许使用用户admin在浏览器中访问
128 </Directory>
systemctl restart httpd.service
若要因此用户均可访问则:
vim /etc/httpd/conf/httpd.conf
127 Require valid-user
systemctl restart httpd.service
访问须要输入用户和密码
●apaache的虚拟主机
vim /etc/httpd/conf/httpd.conf先修改成初始状态
119 DocumentRoot "/var/www/html"
120 #DocumentRoot "/www/westos"
121 #
122 # Relax access to content within /var/www.
[root@web1 westos]# cd /etc/httpd/
[root@web1 httpd]# ls
conf conf.d conf.modules.d logs modules run
[root@web1 httpd]# htpasswd -cm htpasswdfile admin -c表示创建
New password:
Re-type new password:
Adding password for user admin
[root@web1 httpd]# htpasswd -m htpasswdfile westos 第二次新建不用加c,若加-c会覆盖第一次创建的用户信息
New password:
Re-type new password:
Adding password for user westos
[root@web1 httpd]# cat htpasswdfile
admin:$apr1$JICcD90s$CUjJyhcTEEHIz5x1qj55z1
westos:$apr1$6rk8RbXl$CIFniY0.TwqKr.oY.tvCg1
[root@web1 httpd]# vim /etc/httpd/conf/httpd.conf
[root@web1 httpd]# ll /etc/httpd/htpasswdfile
-rw-r--r--. 1 root root 89 Dec 8 01:17 /etc/httpd/htpasswdfile
vim /etc/httpd/conf/httpd.conf
[root@web1 httpd]# systemctl restart httpd.service
[root@web1 httpd]# cd /var/www/html/
[root@web1 html]# ls
index.html
[root@web1 html]# vim index.html 这里是默认的
[root@web1 html]# mkdir /var/www/virtual/news.westos.com/html -p
[root@web1 html]# mkdir /var/www/virtual/music.westos.com/html -p
[root@web1 html]# cd /var/www/virtual/news.westos.com/html/
[root@web1 html]# vim index.html
[root@web1 html]# cd /var/www/virtual/music.westos.com/html/
[root@web1 html]# vim index.html
[root@web1 html]# cd /etc/httpd/conf.d/
[root@web1 conf.d]# ls
autoindex.conf manual.conf README userdir.conf welcome.conf
[root@web1 conf.d]# vim /etc/httpd/conf/httpd.conf
[root@web1 conf.d]# vim default.conf
[root@web1 conf.d]# vim music.conf
[root@web1 conf.d]# vim news.conf
[root@web1 conf.d]# ls
autoindex.conf manual.conf news.conf userdir.conf
default.conf music.conf README welcome.co
[root@web1 conf.d]# systemctl restart httpd
vim /etc/httpd/conf/httpd.conf 查看文件应该编辑的地方
353 IncludeOptional conf.d/*.conf
[root@westos named]# vim /etc/hosts 测试端:(在desktop上)
172.25.254.112 www.westos.com westos.com news.westos.com music.westos.com
firefox -->在浏览器中输入不一样的域名
若是显示对应 ,则配置正确