上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 55 下一页
摘要: package main import ( "fmt" ) type Calculator struct { N1, N2 float64 } func (c *Calculator) Print(n int) { for b := 1; b <= n; b++ { for p := 1; p <= 阅读全文
posted @ 2022-05-18 10:34 ascertain 阅读(14) 评论(0) 推荐(0) 编辑
摘要: # Commen Name 不能相同 openssl genrsa -out ca.key 2048 openssl req -new -x509 -days 365 -key ca.key -out ca.crt openssl req -new -newkey rsa:2048 -keyout 阅读全文
posted @ 2022-05-15 23:48 ascertain 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-15 11:20 ascertain 阅读(25) 评论(0) 推荐(0) 编辑
摘要: Module ngx_http_referer_module (nginx.org) Nginx中有一个指令 valid_referers. 该指令可以用来获取 Referer 头域中的值,并且根据该值的情况给 Nginx全局变量 invalidreferer赋值。如果Referer头域中没有符合v 阅读全文
posted @ 2022-05-14 19:29 ascertain 阅读(150) 评论(0) 推荐(0) 编辑
摘要: + 号可省略 date +'%F %T' --date='+8 seconds' # 8秒后 date +'%F %T' --date='-8 seconds' # 8秒前 date +'%F %T' --date='+5 minutes' # 5分后 date +'%F %T' --date='- 阅读全文
posted @ 2022-05-14 18:54 ascertain 阅读(18) 评论(0) 推荐(0) 编辑
摘要: Alphabetical index of variables (nginx.org) ngx_http_core_module 模块变量 Module ngx_http_core_module (nginx.org) ngx_http_upstream_module 模块变量 Module ngx 阅读全文
posted @ 2022-05-14 17:56 ascertain 阅读(57) 评论(0) 推荐(0) 编辑
摘要: nginx_http_sub_module Module ngx_http_sub_module (nginx.org) ngx_http_addition_module Module ngx_http_addition_module (nginx.org) 阅读全文
posted @ 2022-05-14 17:17 ascertain 阅读(32) 评论(0) 推荐(0) 编辑
摘要: index module Module ngx_http_index_module (nginx.org) autoindex module Module ngx_http_autoindex_module (nginx.org) 阅读全文
posted @ 2022-05-14 14:39 ascertain 阅读(22) 评论(0) 推荐(0) 编辑
摘要: $document_root & $realpath_root 是文件夹 $request_filename 是文件 disable_symlinks Module ngx_http_core_module (nginx.org) 阅读全文
posted @ 2022-05-14 13:31 ascertain 阅读(463) 评论(0) 推荐(0) 编辑
摘要: GoAccess: GoAccess - 中文站 - 可视化 Web 日志分析工具 goaccess access.log -o ../html/report.html --real-time-html --time-format='%H:%M:%S' --date-format='%Y-%b-%d 阅读全文
posted @ 2022-05-14 09:44 ascertain 阅读(113) 评论(0) 推荐(0) 编辑
摘要: location ~ /Vend1/$ { return 201 'First RegExp $uri'; } location ~* /Vend1/(.*)$ { return 202 'IgnoreCase RegExp $uri'; } location ^~ /Vend1/ { return 阅读全文
posted @ 2022-05-13 19:58 ascertain 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Module ngx_http_realip_module (nginx.org) 先验证X-Real-IP & X-Forwarded-For: 验证realip proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_add 阅读全文
posted @ 2022-05-13 17:04 ascertain 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-05-13 14:34 ascertain 阅读(6) 评论(0) 推荐(0) 编辑
摘要: Express application generator (expressjs.com) import express from 'express' import bodyParser from 'body-parser' const app = express() app.use(bodyPar 阅读全文
posted @ 2022-05-13 14:25 ascertain 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 将query string编码后发送 curl 'ram.canto.com/rt/tt' --data-urlencode 'name=啊&age=55' --get --data-urlencode <data> HTTP POST data url encoded --get Put the 阅读全文
posted @ 2022-05-13 13:40 ascertain 阅读(27) 评论(0) 推荐(0) 编辑
摘要: Module ngx_http_core_module (nginx.org) 阅读全文
posted @ 2022-05-13 00:19 ascertain 阅读(58) 评论(0) 推荐(0) 编辑
摘要: Module ngx_http_rewrite_module (nginx.org) Module ngx_http_core_module (nginx.org) error_page return error_page: 阅读全文
posted @ 2022-05-12 19:23 ascertain 阅读(92) 评论(0) 推荐(0) 编辑
摘要: Module ngx_http_core_module (nginx.org) limit_conn_zone $binary_remote_addr zone=addr:10m; server { listen 80; server_name *.intrinsic.io; error_log l 阅读全文
posted @ 2022-05-11 00:03 ascertain 阅读(58) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.3.0</version> </dependency> Code Generation Library: package io.veer.r 阅读全文
posted @ 2022-05-10 21:54 ascertain 阅读(25) 评论(0) 推荐(0) 编辑
摘要: Teacher: package io.vend.velocity.vend; public class Teacher implements Cloneable{ private String name; public Teacher(String name){ this.name = name; 阅读全文
posted @ 2022-05-10 18:45 ascertain 阅读(25) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 55 下一页