zoukankan      html  css  js  c++  java
  • 11.18 Apache用户认证 11.19/11.20 域名跳转 11.21 Apache访问日志

    [root@lizhipenglinux01 abc.com]# /usr/local/apache2.4/bin/htpasswd -c -m /data/.htpasswd aming
    New password:
    Re-type new password:
    Adding password for user aming

    [root@lizhipenglinux01 abc.com]# cat /data/.htpasswd
    aming:$apr1$zwiDnzEZ$JSD12PoIVH90Sry//fz3T.

    [root@lizhipenglinux01 abc.com]# /usr/local/apache2.4/bin/htpasswd -m /data/.htpasswd zhangsan
    New password:
    Re-type new password:
    Adding password for user zhangsan

    [root@lizhipenglinux01 abc.com]# cat /data/.htpasswd
    aming:$apr1$zwiDnzEZ$JSD12PoIVH90Sry//fz3T.
    zhangsan:$apr1$Arll9KtL$REiXaDWcbNP8q6pEJnaMW/

    [root@lizhipenglinux01 ~]# curl -x127.0.0.1:80 -uaming:lizhipeng1204 111.com -I
    HTTP/1.1 200 OK
    Date: Fri, 02 Mar 2018 00:17:49 GMT
    Server: Apache/2.4.29 (Unix) PHP/5.6.30
    X-Powered-By: PHP/5.6.30
    Content-Type: text/html; charset=UTF-8

    [root@lizhipenglinux01 ~]# !curl
    curl -x127.0.0.1:80 -uaming:lizhipeng1204 111.com -I
    HTTP/1.1 200 OK
    Date: Fri, 02 Mar 2018 00:27:46 GMT
    Server: Apache/2.4.29 (Unix) PHP/5.6.30
    X-Powered-By: PHP/5.6.30
    Content-Type: text/html; charset=UTF-8

    [root@lizhipenglinux01 ~]# curl -x127.0.0.1:80 -uaming:lizhipeng1204 111.com/123.php
    123.php[root@lizhipenglinux01 ~]#

    [root@lizhipenglinux01 ~]# /usr/local/apache2.4/bin/apachectl -M |grep rewrite
    [root@lizhipenglinux01 ~]# vi /usr/local/apache2.4/conf/httpd.conf

    [root@lizhipenglinux01 ~]# /usr/local/apache2.4/bin/apachectl -t
    Syntax OK
    [root@lizhipenglinux01 ~]# /usr/local/apache2.4/bin/apachectl graceful
    [root@lizhipenglinux01 ~]# /usr/local/apache2.4/bin/apachectl -M |grep rewrite
    rewrite_module (shared)

  • 相关阅读:
    滑动加载
    关于git的常用命令
    github相关指令学习
    jquery的contains方法
    vertical-align_CSS参考手册_web前端开发参考手册系列
    关于拜读张鑫旭文章,了解的新属性
    如何从GitHub仓库clone项目
    关于小窗滑动,父级body也跟随滑动的解决方案(2)
    vue父子组件传递参数之props
    JsExcelXml.js的源码
  • 原文地址:https://www.cnblogs.com/sisul/p/8495492.html
Copyright © 2011-2022 走看看