码迷,mamicode.com
首页 > Web开发 > 详细

Apache

时间:2016-12-09 01:34:40      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:enable   软件包   start   

Apache基本配置

安装apache软件包:

     yum install -y httpd httpd-manual

启动apache服务:

    # systemctl start httpd ; systemctl enable httpd

查看监听端口:

技术分享


 

 

##1.修改默认访问文件

[root@linux thunderbird]# vim /etc/httpd/conf/httpd.conf

        164     DirectoryIndex file index.html##优先访问前者

[root@linux html]# systemctl restart httpd.service

技术分享

 

##2.修改默认访问路径

[root@linux html]# vim /etc/httpd/conf/httpd.conf

技术分享

[root@linux html]# mkdir /www/westos -p

[root@linux html]# semanage fcontext -a -t httpd_sys_content_t ‘‘

[root@linux html]# semanage fcontext -a -t httpd_sys_content_t ‘/www/westos(/.*)?‘

[root@linux 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@linux westos]# vim file

[root@linux westos]# ls -Z

-rw-r--r--. root root unconfined_u:object_r:httpd_sys_content_t:s0 file

[root@linux westos]# systemctl restart httpd.service

技术分享

 

 

 

 

 

##3.设置黑白名单

 

 

[root@linux westos]# vim /etc/httpd/conf/httpd.conf

技术分享

[root@linux westos]# systemctl restart httpd.service

技术分享

 

 

 


 

##4.登陆帐号密码验证


技术分享

[root@linux conf]# vim httpd.conf

技术分享

[root@linux conf]# systemctl restart httpd.service

 

测试:

技术分享

 

 

 

##5.制作多个同域名网站

客户端:

[root@foundation99 Desktop]# vim /etc/hosts

172.25.99.100 linux.com linux.linux.com music.linux.com news.linux.com


主机端:

[root@linux conf]# mkdir -p /var/www/virtual/music.linux.com/html

[root@linux conf]# mkdir -p /var/www/virtual/news.linux.com/html

[root@linux conf]# cd /etc/httpd/conf.d/

[root@linux conf.d]# vim default.conf

技术分享

[root@linux conf.d]# vim news.conf

技术分享

[root@linux conf.d]# vim music.conf

技术分享

[root@linux conf.d]# systemctl restart httpd.service

 

测试:

技术分享

技术分享

技术分享


 

 

 

##6.https:安全证书修改

主机端:

[root@linux html]# yum install mod_ssl.x86_64 -y

[root@linux html]# systemctl restart httpd.service

[root@linux html]# netstat -natlpe |grep 443

tcp6       0      0 :::443                  :::*                     LISTEN      0          84700      6162/httpd    

    [root@linux html]# yum install crypto-utils.x86_64 -y

  [root@linux html]# genkey www.linux.com

技术分享

技术分享


 

技术分享

技术分享

技术分享


 

[root@linux conf.d]# vim ssl.conf

技术分享

[root@linux conf.d]# systemctl restart httpd.service

 

 

测试:

技术分享

技术分享



 

 


本文出自 “12110289” 博客,谢绝转载!

Apache

标签:enable   软件包   start   

原文地址:http://12120289.blog.51cto.com/12110289/1880756

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!