1.安装httpdyum-yinstallhttpd2.查看帮助命令htpasswd--help3.创建用户与密码语法:htpasswd-bcm目录用户名密码
示例:htpasswd-bcm/var/userdy1234564.查看生成的用户名密码cat/var/user5.修改nginx.conf配置文件,在location中添加如下配置#当auth_basic为off表示关闭
auth_basi..
分类:
其他好文 时间:
2017-07-03 20:56:26
阅读次数:
133
/* @flow */ import config from '../config' import Watcher from '../observer/watcher' import { mark, measure } from '../util/perf' import { createEmpty... ...
分类:
Web程序 时间:
2017-07-03 17:20:28
阅读次数:
312
// test03.cpp : Defines the entry point for the console application.////设计模式第3章 装饰者模式#include "stdafx.h"#include <string>#include <iostream>//#include ...
分类:
编程语言 时间:
2017-07-03 15:09:27
阅读次数:
196
我们在开发过程中发现,要调整Unity UI元素的大小,RectTransform提供了sizeDelta属性可以用来动态修改RectTransform的大小,但同时我们也google到另外一个修改RectTransform大小的方法,方法如下: ...
分类:
编程语言 时间:
2017-07-03 14:02:37
阅读次数:
325
使用g++命令直接一次性编译多个文件 这里以简单的HelloWorld程序为例,假设我们一共有三个文件:main.cpp,HelloWorld.cpp和HelloWorld.h. 其中HelloWorld.cpp中有一个打印HelloWorld的程序并在.h文件中声明,main.cpp通过包含.h文 ...
分类:
其他好文 时间:
2017-07-03 13:58:58
阅读次数:
143
今天遇到了一个奇葩问题,写HTML时有个select控件。通过设置option的selected="selected"竟然无效,可是在其它浏览器是能够的。问了一下Google大神,说要在select标签加上autocomplete="off",如: <select autocomplete="off ...
分类:
Web程序 时间:
2017-07-03 10:11:15
阅读次数:
181
SQLite单表4亿订单,大数据测试 SQLite作为嵌入式数据库的翘楚,广受欢迎!新生命团队自2010年以来,投入大量精力对SQLite进行学习研究,成功应用于各系统非致命数据场合。 SQLite极致性能 关闭同步,Synchronous=Off,提升性能。添删改操作时不必同步等待写入磁盘,操作系 ...
分类:
数据库 时间:
2017-07-02 21:18:55
阅读次数:
309
(1)access_log是ngx_http_log_module模块的配置项。 Syntax: access_log path [format [buffer=size] [gzip[=level]] [flush=time] [if=condition]]; access_log off; De ...
分类:
Web程序 时间:
2017-07-02 19:05:28
阅读次数:
210
3.1 DOM 操作分类 ①DOM Core 包括(getElementById() , getElementsByTagName() , getAttribute() , setAttribute() ) ②HTML DOM 专属HTML_DOM属性,提供一些更简明的记号来描述各种HTML元素属性 ...
分类:
Web程序 时间:
2017-07-02 17:13:31
阅读次数:
182