- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我想保护实时 HLS 流。我想使用 auth_request 模块。我想通过传递 key 来检查请求是否有效。所以像:http://domain.com/hls/stream.m3u8?key=xxxxxxx
我在 nginx.conf 中有以下设置:
location /hls {
alias /tmp/hls;
auth_request /hls/auth;
}
location /hls/auth {
proxy_pass http://localhost.com:8080/on_play.php;
proxy_pass_request_body off;
proxy_set_header Content-Length "";
proxy_set_header X-Original-URI $request_uri;
}
现在我需要在 http://localhost.com:8080/on_play.php 中获取可用的 key=xxxxx .
我尝试了很多,但似乎没有任何效果。我也试过类似的东西:
location /hls {
alias /tmp/hls;
auth_request http://localhost.com:8080/on_play.php?key=$arg_key;
}
但这也行不通。似乎不可能在 on_play.php 中获取关键参数
$_SERVER["REQUEST_URI"] 也不包含参数。
还尝试了以下配置:
我也尝试过类似的方法,但这也不起作用:
location ~ ^/hls/(long|short)/([0-9a-zA-Z]+)\.m3u8 {
alias /tmp/hls/$1/$2.m3u8;
auth_request /hls/auth-play/$1/$2;
}
location ~ ^/hls/auth-play/(long|short)/([0-9a-zA-Z]+) {
proxy_pass http://loclahost.com:8080/on_play.php?app=$1&room=$2;
proxy_pass_request_body off;
proxy_set_header Content-Length "";
proxy_set_header X-Original-URI $request_uri;
}
但这也行不通。
nginx -V 的输出是:
nginx version: nginx/1.6.0
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC)
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_spdy_module --with-cc-opt='-O2 -g -pipe -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic'
我可以在 php 中读取 $_SERVER["HTTP_X_ORIGINAL_URI"],但我喜欢像 $_GET 一样使用变量。这似乎不起作用。
从下面的日志可以看出,子请求中只添加了 $is_args 变量。调试日志如下:
2014/06/27 08:41:59 [debug] 27994#0: timer delta: 0
2014/06/27 08:41:59 [debug] 27994#0: posted events 0000000000000000
2014/06/27 08:41:59 [debug] 27994#0: worker cycle
2014/06/27 08:41:59 [debug] 27994#0: epoll timer: 59029
2014/06/27 08:42:00 [debug] 27994#0: epoll: fd:6 ev:0001 d:00000000017C7450
2014/06/27 08:42:00 [debug] 27994#0: accept on IP:80, ready: 0
2014/06/27 08:42:00 [debug] 27994#0: posix_memalign: 00000000017BB920:256 @16
2014/06/27 08:42:00 [debug] 27994#0: *39 accept: IP fd:3
2014/06/27 08:42:00 [debug] 27994#0: posix_memalign: 00000000017BBA80:256 @16
2014/06/27 08:42:00 [debug] 27994#0: *39 event timer add: 3: 60000:1403851380198
2014/06/27 08:42:00 [debug] 27994#0: *39 reusable connection: 1
2014/06/27 08:42:00 [debug] 27994#0: *39 epoll add event: fd:3 op:1 ev:80002001
2014/06/27 08:42:00 [debug] 27994#0: timer delta: 319
2014/06/27 08:42:00 [debug] 27994#0: posted events 0000000000000000
2014/06/27 08:42:00 [debug] 27994#0: worker cycle
2014/06/27 08:42:00 [debug] 27994#0: epoll timer: 58710
2014/06/27 08:42:00 [debug] 27994#0: epoll: fd:3 ev:0001 d:00000000017C7961
2014/06/27 08:42:00 [debug] 27994#0: *39 http wait request handler
2014/06/27 08:42:00 [debug] 27994#0: *39 malloc: 00000000017972F0:1024
2014/06/27 08:42:00 [debug] 27994#0: *39 recv: fd:3 390 of 1024
2014/06/27 08:42:00 [debug] 27994#0: *39 reusable connection: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 posix_memalign: 00000000018354C0:4096 @16
2014/06/27 08:42:00 [debug] 27994#0: *39 http process request line
2014/06/27 08:42:00 [debug] 27994#0: *39 http request line: "GET /hls/group/rsdrsd.m3u8?user=rsdrsd2 HTTP/1.1"
2014/06/27 08:42:00 [debug] 27994#0: *39 http uri: "/hls/group/rsdrsd.m3u8"
2014/06/27 08:42:00 [debug] 27994#0: *39 http args: "user=rsdrsd2"
2014/06/27 08:42:00 [debug] 27994#0: *39 http exten: "m3u8"
2014/06/27 08:42:00 [debug] 27994#0: *39 posix_memalign: 00000000018364D0:4096 @16
2014/06/27 08:42:00 [debug] 27994#0: *39 http process request header line
2014/06/27 08:42:00 [debug] 27994#0: *39 http header: "Host: domain.com"
2014/06/27 08:42:00 [debug] 27994#0: *39 http header: "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
2014/06/27 08:42:00 [debug] 27994#0: *39 http header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2014/06/27 08:42:00 [debug] 27994#0: *39 http header: "Accept-Language: en-US,en;q=0.5"
2014/06/27 08:42:00 [debug] 27994#0: *39 http header: "Accept-Encoding: gzip, deflate"
2014/06/27 08:42:00 [debug] 27994#0: *39 http header: "Cookie: PHPSESSID=c3m0rkb9il0udfgoh9qt91jao0"
2014/06/27 08:42:00 [debug] 27994#0: *39 http header: "Connection: keep-alive"
2014/06/27 08:42:00 [debug] 27994#0: *39 http header: "Cache-Control: max-age=0"
2014/06/27 08:42:00 [debug] 27994#0: *39 http header done
2014/06/27 08:42:00 [debug] 27994#0: *39 event timer del: 3: 1403851380198
2014/06/27 08:42:00 [debug] 27994#0: *39 generic phase: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 rewrite phase: 1
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: "/hls/auth-update"
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: "/hls/public"
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: ~ "[^/]\.php(/|$)"
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: ~ "^/hls/(private|group)/([0-9a-zA-Z]+)\.m3u8"
2014/06/27 08:42:00 [debug] 27994#0: *39 using configuration "^/hls/(private|group)/([0-9a-zA-Z]+)\.m3u8"
2014/06/27 08:42:00 [debug] 27994#0: *39 http cl:-1 max:1048576
2014/06/27 08:42:00 [debug] 27994#0: *39 rewrite phase: 3
2014/06/27 08:42:00 [debug] 27994#0: *39 post rewrite phase: 4
2014/06/27 08:42:00 [debug] 27994#0: *39 generic phase: 5
2014/06/27 08:42:00 [debug] 27994#0: *39 generic phase: 6
2014/06/27 08:42:00 [debug] 27994#0: *39 generic phase: 7
2014/06/27 08:42:00 [debug] 27994#0: *39 access phase: 8
2014/06/27 08:42:00 [debug] 27994#0: *39 access phase: 9
2014/06/27 08:42:00 [debug] 27994#0: *39 access phase: 10
2014/06/27 08:42:00 [debug] 27994#0: *39 auth request handler
2014/06/27 08:42:00 [debug] 27994#0: *39 http subrequest "/hls/auth-play?"
2014/06/27 08:42:00 [debug] 27994#0: *39 http posted request: "/hls/auth-play?"
2014/06/27 08:42:00 [debug] 27994#0: *39 rewrite phase: 1
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: "/hls/auth-update"
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: "/hls/auth-play"
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: ~ "[^/]\.php(/|$)"
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: ~ "^/hls/(private|group)/([0-9a-zA-Z]+)\.m3u8"
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: ~ "^/hls/(private|group)/([0-9a-zA-Z]+)\-([0-9]+)\.ts"
2014/06/27 08:42:00 [debug] 27994#0: *39 test location: ~ "^/chat/(?<node>(3000))"
2014/06/27 08:42:00 [debug] 27994#0: *39 using configuration "/hls/auth-play"
2014/06/27 08:42:00 [debug] 27994#0: *39 http cl:-1 max:1048576
2014/06/27 08:42:00 [debug] 27994#0: *39 rewrite phase: 3
2014/06/27 08:42:00 [debug] 27994#0: *39 post rewrite phase: 4
2014/06/27 08:42:00 [debug] 27994#0: *39 generic phase: 5
2014/06/27 08:42:00 [debug] 27994#0: *39 generic phase: 6
2014/06/27 08:42:00 [debug] 27994#0: *39 generic phase: 7
2014/06/27 08:42:00 [debug] 27994#0: *39 posix_memalign: 00000000018374E0:4096 @16
2014/06/27 08:42:00 [debug] 27994#0: *39 http script copy: "http://127.0.0.1:8080/on_play.php"
2014/06/27 08:42:00 [debug] 27994#0: *39 http script var: ""
2014/06/27 08:42:00 [debug] 27994#0: *39 http init upstream, client timer: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 epoll add event: fd:3 op:3 ev:80002005
2014/06/27 08:42:00 [debug] 27994#0: *39 http script copy: "X-Original-URI: "
2014/06/27 08:42:00 [debug] 27994#0: *39 http script var: "/hls/group/rsdrsd.m3u8?user=rsdrsd2"
2014/06/27 08:42:00 [debug] 27994#0: *39 http script copy: "^M
"
2014/06/27 08:42:00 [debug] 27994#0: *39 http script copy: "Host: "
2014/06/27 08:42:00 [debug] 27994#0: *39 http script var: "127.0.0.1:8080"
2014/06/27 08:42:00 [debug] 27994#0: *39 http script copy: "^M
"
2014/06/27 08:42:00 [debug] 27994#0: *39 http script copy: "Connection: close^M
"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "Accept-Language: en-US,en;q=0.5"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "Accept-Encoding: gzip, deflate"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "Cookie: PHPSESSID=c3m0rkb9il0udfgoh9qt91jao0"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "Cache-Control: max-age=0"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header:
"GET /on_play.php HTTP/1.0^M
X-Original-URI: /hls/group/rsdrsd.m3u8?user=rsdrsd2^M
Host: 127.0.0.1:8080^M
Connection: close^M
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0^M
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8^M
Accept-Language: en-US,en;q=0.5^M
Accept-Encoding: gzip, deflate^M
Cookie: PHPSESSID=c3m0rkb9il0udfgoh9qt91jao0^M
Cache-Control: max-age=0^M
^M
"
2014/06/27 08:42:00 [debug] 27994#0: *39 http cleanup add: 0000000001837A58
2014/06/27 08:42:00 [debug] 27994#0: *39 get rr peer, try: 1
2014/06/27 08:42:00 [debug] 27994#0: *39 socket 10
2014/06/27 08:42:00 [debug] 27994#0: *39 epoll add connection: fd:10 ev:80002005
2014/06/27 08:42:00 [debug] 27994#0: *39 connect to 127.0.0.1:8080, fd:10 #40
2014/06/27 08:42:00 [debug] 27994#0: *39 http upstream connect: -2
2014/06/27 08:42:00 [debug] 27994#0: *39 posix_memalign: 0000000001789700:128 @16
2014/06/27 08:42:00 [debug] 27994#0: *39 event timer add: 10: 60000:1403851380199
2014/06/27 08:42:00 [debug] 27994#0: *39 http finalize request: -4, "/hls/auth-play?" a:1, c:3
2014/06/27 08:42:00 [debug] 27994#0: *39 http request count:3 blk:0
2014/06/27 08:42:00 [debug] 27994#0: timer delta: 1
2014/06/27 08:42:00 [debug] 27994#0: posted events 0000000000000000
2014/06/27 08:42:00 [debug] 27994#0: worker cycle
2014/06/27 08:42:00 [debug] 27994#0: epoll timer: 58709
2014/06/27 08:42:00 [debug] 27994#0: epoll: fd:3 ev:0004 d:00000000017C7961
2014/06/27 08:42:00 [debug] 27994#0: *39 http run request: "/hls/auth-play?"
2014/06/27 08:42:00 [debug] 27994#0: *39 http upstream check client, write event:1, "/hls/auth-play"
2014/06/27 08:42:00 [debug] 27994#0: *39 http upstream recv(): -1 (11: Resource temporarily unavailable)
2014/06/27 08:42:00 [debug] 27994#0: epoll: fd:10 ev:0004 d:00000000017C7A39
2014/06/27 08:42:00 [debug] 27994#0: *39 http upstream request: "/hls/auth-play?"
2014/06/27 08:42:00 [debug] 27994#0: *39 http upstream send request handler
2014/06/27 08:42:00 [debug] 27994#0: *39 http upstream send request
2014/06/27 08:42:00 [debug] 27994#0: *39 chain writer buf fl:1 s:419
2014/06/27 08:42:00 [debug] 27994#0: *39 chain writer in: 00000000018374C0
2014/06/27 08:42:00 [debug] 27994#0: *39 writev: 419
2014/06/27 08:42:00 [debug] 27994#0: *39 chain writer out: 0000000000000000
2014/06/27 08:42:00 [debug] 27994#0: *39 event timer del: 10: 1403851380199
2014/06/27 08:42:00 [debug] 27994#0: *39 event timer add: 10: 60000:1403851380199
2014/06/27 08:42:00 [debug] 27994#0: timer delta: 0
2014/06/27 08:42:00 [debug] 27994#0: posted events 0000000000000000
2014/06/27 08:42:00 [debug] 27994#0: worker cycle
2014/06/27 08:42:00 [debug] 27994#0: epoll timer: 58709
2014/06/27 08:42:00 [debug] 27994#0: epoll: fd:10 ev:0005 d:00000000017C7A39
2014/06/27 08:42:00 [debug] 27994#0: *39 http upstream request: "/hls/auth-play?"
2014/06/27 08:42:00 [debug] 27994#0: *39 http upstream process header
2014/06/27 08:42:00 [debug] 27994#0: *39 malloc: 00000000018384F0:4096
2014/06/27 08:42:00 [debug] 27994#0: *39 recv: fd:10 154 of 4096
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy status 403 "403 Forbidden"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "Server: nginx/1.6.0"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "Date: Fri, 27 Jun 2014 06:42:00 GMT"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "Content-Type: text/html"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "Connection: close"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header: "X-Powered-By: PHP/5.5.10"
2014/06/27 08:42:00 [debug] 27994#0: *39 http proxy header done
2014/06/27 08:42:00 [debug] 27994#0: *39 finalize http upstream request: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 finalize http proxy request
2014/06/27 08:42:00 [debug] 27994#0: *39 free rr peer 1 0
2014/06/27 08:42:00 [debug] 27994#0: *39 close http upstream connection: 10
2014/06/27 08:42:00 [debug] 27994#0: *39 free: 0000000001789700, unused: 48
2014/06/27 08:42:00 [debug] 27994#0: *39 event timer del: 10: 1403851380199
2014/06/27 08:42:00 [debug] 27994#0: *39 reusable connection: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 http finalize request: 0, "/hls/auth-play?" a:1, c:2
2014/06/27 08:42:00 [debug] 27994#0: *39 auth request done s:403
2014/06/27 08:42:00 [debug] 27994#0: *39 http wake parent request: "/hls/group/rsdrsd.m3u8?user=rsdrsd2"
2014/06/27 08:42:00 [debug] 27994#0: *39 http posted request: "/hls/group/rsdrsd.m3u8?user=rsdrsd2"
2014/06/27 08:42:00 [debug] 27994#0: *39 access phase: 10
2014/06/27 08:42:00 [debug] 27994#0: *39 auth request handler
2014/06/27 08:42:00 [debug] 27994#0: *39 auth request set variables
2014/06/27 08:42:00 [debug] 27994#0: *39 http finalize request: 403, "/hls/group/rsdrsd.m3u8?user=rsdrsd2" a:1, c:1
2014/06/27 08:42:00 [debug] 27994#0: *39 http special response: 403, "/hls/group/rsdrsd.m3u8?user=rsdrsd2"
2014/06/27 08:42:00 [debug] 27994#0: *39 http set discard body
2014/06/27 08:42:00 [debug] 27994#0: *39 HTTP/1.1 403 Forbidden^M
Server: nginx/1.6.0^M
Date: Fri, 27 Jun 2014 06:42:00 GMT^M
Content-Type: text/html^M
Content-Length: 168^M
Connection: keep-alive^M
2014/06/27 08:42:00 [debug] 27994#0: *39 write new buf t:1 f:0 0000000001837DC8, pos 0000000001837DC8, size: 154 file: 0, size: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 http write filter: l:0 f:0 s:154
2014/06/27 08:42:00 [debug] 27994#0: *39 http output filter "/hls/group/rsdrsd.m3u8?user=rsdrsd2"
2014/06/27 08:42:00 [debug] 27994#0: *39 http copy filter: "/hls/group/rsdrsd.m3u8?user=rsdrsd2"
2014/06/27 08:42:00 [debug] 27994#0: *39 http postpone filter "/hls/group/rsdrsd.m3u8?user=rsdrsd2" 0000000001837F98
2014/06/27 08:42:00 [debug] 27994#0: *39 write old buf t:1 f:0 0000000001837DC8, pos 0000000001837DC8, size: 154 file: 0, size: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 write new buf t:0 f:0 0000000000000000, pos 00000000006CD6E0, size: 116 file: 0, size: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 write new buf t:0 f:0 0000000000000000, pos 00000000006CD0C0, size: 52 file: 0, size: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 http write filter: l:1 f:0 s:322
2014/06/27 08:42:00 [debug] 27994#0: *39 http write filter limit 0
2014/06/27 08:42:00 [debug] 27994#0: *39 writev: 322
2014/06/27 08:42:00 [debug] 27994#0: *39 http write filter 0000000000000000
2014/06/27 08:42:00 [debug] 27994#0: *39 http copy filter: 0 "/hls/group/rsdrsd.m3u8?user=rsdrsd2"
2014/06/27 08:42:00 [debug] 27994#0: *39 http finalize request: 0, "/hls/group/rsdrsd.m3u8?user=rsdrsd2" a:1, c:1
2014/06/27 08:42:00 [debug] 27994#0: *39 set http keepalive handler
2014/06/27 08:42:00 [debug] 27994#0: *39 http close request
2014/06/27 08:42:00 [debug] 27994#0: *39 http log handler
2014/06/27 08:42:00 [debug] 27994#0: *39 free: 00000000018384F0
2014/06/27 08:42:00 [debug] 27994#0: *39 free: 00000000018354C0, unused: 8
2014/06/27 08:42:00 [debug] 27994#0: *39 free: 00000000018364D0, unused: 0
2014/06/27 08:42:00 [debug] 27994#0: *39 free: 00000000018374E0, unused: 1069
2014/06/27 08:42:00 [debug] 27994#0: *39 free: 00000000017972F0
2014/06/27 08:42:00 [debug] 27994#0: *39 hc free: 0000000000000000 0
2014/06/27 08:42:00 [debug] 27994#0: *39 hc busy: 0000000000000000 0
2014/06/27 08:42:00 [debug] 27994#0: *39 tcp_nodelay
2014/06/27 08:42:00 [debug] 27994#0: *39 reusable connection: 1
2014/06/27 08:42:00 [debug] 27994#0: *39 event timer add: 3: 3000:1403851323212
2014/06/27 08:42:00 [debug] 27994#0: *39 post event 00000000017FD6D0
2014/06/27 08:42:00 [debug] 27994#0: timer delta: 13
2014/06/27 08:42:00 [debug] 27994#0: posted events 00000000017FD6D0
2014/06/27 08:42:00 [debug] 27994#0: posted event 00000000017FD6D0
2014/06/27 08:42:00 [debug] 27994#0: *39 delete posted event 00000000017FD6D0
2014/06/27 08:42:00 [debug] 27994#0: *39 http keepalive handler
2014/06/27 08:42:00 [debug] 27994#0: *39 malloc: 00000000017972F0:1024
2014/06/27 08:42:00 [debug] 27994#0: *39 recv: fd:3 -1 of 1024
2014/06/27 08:42:00 [debug] 27994#0: *39 recv() not ready (11: Resource temporarily unavailable)
2014/06/27 08:42:00 [debug] 27994#0: *39 free: 00000000017972F0
2014/06/27 08:42:00 [debug] 27994#0: posted event 0000000000000000
2014/06/27 08:42:00 [debug] 27994#0: worker cycle
2014/06/27 08:42:00 [debug] 27994#0: epoll timer: 3000
2014/06/27 08:42:03 [debug] 27994#0: timer delta: 3003
2014/06/27 08:42:03 [debug] 27994#0: *39 event timer del: 3: 1403851323212
2014/06/27 08:42:03 [debug] 27994#0: *39 http keepalive handler
2014/06/27 08:42:03 [debug] 27994#0: *39 close http connection: 3
2014/06/27 08:42:03 [debug] 27994#0: *39 reusable connection: 0
2014/06/27 08:42:03 [debug] 27994#0: *39 free: 0000000000000000
2014/06/27 08:42:03 [debug] 27994#0: *39 free: 00000000017BB920, unused: 0
2014/06/27 08:42:03 [debug] 27994#0: *39 free: 00000000017BBA80, unused: 120
2014/06/27 08:42:03 [debug] 27994#0: posted events 0000000000000000
2014/06/27 08:42:03 [debug] 27994#0: worker cycle
2014/06/27 08:42:03 [debug] 27994#0: epoll timer: 55693
最佳答案
有类似这样的工作:
location ~ ^/something/([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/(.*)$ {
set $auth_request_uri "http://127.0.0.1/api/something/$1/access/$2";
auth_request /auth;
alias $SOMEPATH/public/files/$2/$3;
}
location /auth {
internal;
proxy_pass $auth_request_uri;
proxy_pass_request_body off;
proxy_set_header Content-Length "";
proxy_set_header X-Original-URI $request_uri;
}
关于php - 从 nginx 向 auth_request 模块传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24432426/
简而言之:我想从可变参数模板参数中提取各种选项,但不仅通过标签而且通过那些参数的索引,这些参数是未知的 标签。我喜欢 boost 中的方法(例如 heap 或 lockfree 策略),但想让它与 S
我可以对单元格中的 excel IF 语句提供一些帮助吗? 它在做什么? 对“BaselineAmount”进行了哪些评估? =IF(BaselineAmount, (Variance/Baselin
我正在使用以下方法: public async Task Save(Foo foo,out int param) { ....... MySqlParameter prmparamID
我正在使用 CodeGear RAD Studio IDE。 为了使用命令行参数测试我的应用程序,我多次使用了“运行 -> 参数”菜单中的“参数”字段。 但是每次我给它提供一个新值时,它都无法从“下拉
我已经为信用卡类编写了一些代码,粘贴在下面。我有一个接受上述变量的构造函数,并且正在研究一些方法将这些变量格式化为字符串,以便最终输出将类似于 号码:1234 5678 9012 3456 截止日期:
MySql IN 参数 - 在存储过程中使用时,VarChar IN 参数 val 是否需要单引号? 我已经像平常一样创建了经典 ASP 代码,但我没有更新该列。 我需要引用 VarChar 参数吗?
给出了下面的开始,但似乎不知道如何完成它。本质上,如果我调用 myTest([one, Two, Three], 2); 它应该返回元素 third。必须使用for循环来找到我的解决方案。 funct
将 1113355579999 作为参数传递时,该值在函数内部变为 959050335。 调用(main.c): printf("%d\n", FindCommonDigit(111335557999
这个问题在这里已经有了答案: Is Java "pass-by-reference" or "pass-by-value"? (92 个回答) 关闭9年前。 public class StackOve
我真的很困惑,当像 1 == scanf("%lg", &entry) 交换为 scanf("%lg", &entry) == 1 没有区别。我的实验书上说的是前者,而我觉得后者是可以理解的。 1 =
我正在尝试使用调用 SetupDiGetDeviceRegistryProperty 的函数使用德尔福 7。该调用来自示例函数 SetupEnumAvailableComPorts .它看起来像这样:
我需要在现有项目上实现一些事件的显示。我无法更改数据库结构。 在我的 Controller 中,我(从 ajax 请求)传递了一个时间戳,并且我需要显示之前的 8 个事件。因此,如果时间戳是(转换后)
rails 新手。按照多态关联的教程,我遇到了这个以在create 和destroy 中设置@client。 @client = Client.find(params[:client_id] || p
通过将 VM 参数设置为 -Xmx1024m,我能够通过 Eclipse 运行 Java 程序-Xms256M。现在我想通过 Windows 中的 .bat 文件运行相同的 Java 程序 (jar)
我有一个 Delphi DLL,它在被 Delphi 应用程序调用时工作并导出声明为的方法: Procedure ProduceOutput(request,inputs:widestring; va
浏览完文档和示例后,我还没有弄清楚 schema.yaml 文件中的参数到底用在哪里。 在此处使用 AWS 代码示例:https://github.com/aws-samples/aws-proton
程序参数: procedure get_user_profile ( i_attuid in ras_user.attuid%type, i_data_group in data_g
我有一个字符串作为参数传递给我的存储过程。 dim AgentString as String = " 'test1', 'test2', 'test3' " 我想在 IN 中使用该参数声明。 AND
这个问题已经有答案了: When should I use "this" in a class? (17 个回答) 已关闭 6 年前。 我运行了一些java代码,我看到了一些我不太明白的东西。为什么下
我输入 scroll(0,10,200,10);但是当它运行时,它会传递字符串“xxpos”或“yypos”,我确实在没有撇号的情况下尝试过,但它就是行不通。 scroll = function(xp
我是一名优秀的程序员,十分优秀!