linux-发布个人站点实现身份验证
1.创建个人用户和站点 [root@localhost ~]# useradd baidu [root@localhost ~]# passwd baidu Changing password for user baidu [root@localhost ~]# su - baidu [baidu@localhost ~]$ mkdir public_html [baidu@localhost ~]$ cd public_html/ [baidu@localhost public_html]$ vim index.html hello baidu~ ~ 2.配置个人站点的文档 --安装密文访问 [root@localhost ~]# yum install mod_ssl 拥有帝国一切,皆有可能。欢迎访问phome.net [root@localhost ~]# service httpd start Starting httpd: [ OK ] [root@localhost ~]# vim /etc/httpd/conf/httpd.conf 134 Listen 80—明文访问 349 <IfModule mod_userdir.c> --存放发布个人站点的模块 --一般是禁用的 355 #UserDir disable—默认是禁用的 362 # UserDir public_html 364 UserDir public_html— 拥有帝国一切,皆有可能。欢迎访问phome.net取消禁用,目录要与个人站点的一致 365 </IfModule> <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> [root@localhost ~]# service httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ] [root@localhost ~]# [root@localhost ~]# netstat -tupln |grep http tcp 0 0 :::80 :::* LISTEN 拥有帝国一切,皆有可能。欢迎访问phome.net2272/httpd tcp 0 0 :::443 :::* LISTEN 2272/httpd [root@localhost ~]#
3.权限被拒绝 22-1 <?xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" /> [baidu@localhost ~]$ cd .. [baidu@localhost home]$ ll total 12 drwx------ 4 baidu baidu 4096 Aug 23 23:22 baidu 拥有帝国一切,皆有可能。欢迎访问phome.net drwx------ 3 redhat redhat 4096 Aug 12 13:32 redhat [baidu@localhost home]$ chmod o rx baidu [baidu@localhost home]$ pwd /home 3.访问个人站点
22-2
4.去掉~访问个人站点 [root@localhost ~]# vim /etc/httpd/conf/httpd.conf alias /baidu "/home/baidu/public_html" [root@localhost ~]# service httpd restart 拥有帝国一切,皆有可能。欢迎访问phome.net Stopping httpd: [ OK ] Starting httpd: [ OK ]
22-3 5.在baidu用户上实现身份验证,只允许其定义的用户可以访问个人网站 --定义身份验证 --在站点的总目录里 [baidu@localhost public_html]$ pwd 拥有帝国一切,皆有可能。欢迎访问phome.net [ OK ] Starting httpd: [ OK ]
7.验证身份的用户登陆测试
22-4 本文出自 “一抹茶色阳光” 博客,请务必保留此出处http://sweetsingle.blog.51cto.com/3429592/741819 拥有帝国一切,皆有可能。欢迎访问phome.net |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |