我在perl上使用fastcgi的lighttpd服务器。 Lighttpd配置:
server.modules = (
"mod_access",
"mod_alias",
"mod_compress",
"mod_redirect",
"mod_rewrite",
"mod_accesslog",
)
server.document-root = "/var/www"
server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
server.errorlog = "/var/log/lighttpd/error.log"
server.pid-file = "/var/run/lighttpd.pid"
server.username = "www-data"
server.groupname = "www-data"
server.max-keep-alive-requests = 10
server.max-keep-alive-idle = 5
#server.max-fds = 10240
server.max-connections = 8192
index-file.names = ( "index.php", "index.html",
"index.htm", "default.htm",
"index.lighttpd.html" )
url.access-deny = ( "~", ".inc" )
static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
dir-listing.encoding = "utf-8"
server.dir-listing = "disable"
compress.cache-dir = "/var/cache/lighttpd/compress/"
compress.filetype = ( "application/x-javascript", "text/css", "text/html", "text/plain" )
include_shell "/usr/share/lighttpd/create-mime.assign.pl"
include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
$HTTP["host"] =~ "(^|\.)hostname\.net$" {
server.document-root = "/var/www/hostname.net"
url.rewrite-once = (
"^/index.php" => "/index.pl",
)
}
启用快速CGI。这里配置fcgi.server:
fastcgi.server += ( ".pl" =>
((
"socket" => "/tmp/perl.socket" + var.PID,
"bin-path" => "/usr/bin/dispatch.fcgi",
"docroot" => "/var/www/hostname.net",
"check-local" => "disable",
))
)
dispatch.fcgi:
use strict;
use CGI::Fast;
use Embed::Persistent; {
my $p = Embed::Persistent->new();
while (new CGI::Fast) {
my $filename = $ENV{SCRIPT_FILENAME};
my $package = $p->valid_package_name($filename);
my $mtime;
if ($p->cached($filename, $package, \$mtime)) {
eval {$package->handler;};
}
else {
$p->eval_file($ENV{SCRIPT_FILENAME});
}
}
}
这是我的脚本(编辑后):
use strict;
use warnings;
use CGI;
my $q = new CGI;
open my $fh, '>', "/var/www/hostname.net/payload.body" or die "Can't open payload.body: $!";
{
local $/;
print $fh $q->param('arg1');
}
close $fh;
print $q->header;
print $q->param('arg1');
发送请求:
wget --post-data="arg1=dfsdfasf&arg2=sdfasfdsdf" http://hostname.net/test.pl --save-headers --quiet -O -
payload.body为空(但更改时间更新)和转储是:
HTTP/1.0 200 OK
Content-Type: text/html; charset=ISO-8859-1
Content-Length: 0
Connection: keep-alive
Date: Fri, 05 Oct 2012 12:23:07 GMT
Server: lighttpd/1.4.28
就是这样。
我尝试通过这种方式获取POST参数,但查询变为空。我是这样试过的:
use Data::Dumper;
my $request;
use FCGI;
my $env;
my $q = FCGI::Request();
$env = $q->GetEnvironment();
my $buffer = "data\n";
if ( $ENV{'REQUEST_METHOD'} eq "POST" ){
read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
}
else {
print ("some error");
};
print("Content-type: text/plain\r\n\r\n", Dumper($buffer),"\n");
我需要从请求中获取POST参数(二进制发布数据)。
你能帮帮我吗?也许我以错误的方式接受帖子参数?非常感谢!
答案 0 :(得分:2)
open
解释这就是您的第一个脚本不起作用的原因:
open FH, "<payload.body";
# ^---
perl借用了Bourne Shell中的open
语法。
<
表示阅读
>
表示写作>>
表示附加
+<
表示阅读和写作
如果我们遵循一些最佳做法,那么您的open
声明将是:
open my $fh, '>', "payload.body" or die "Can't open payload.body: $!";
实际上,您尝试print
到只读的文件句柄。但是,Perl可以向您发出警告,以及您可能遇到的许多其他问题。只需use strict
和use warnings
位于脚本顶部(实际上所有的脚本)。您可以使用Carp
模块发出更好的错误消息。请注意,在服务器上,这些警告通常会记录在日志中,但您发现的内容值得查找。
Dumper
是什么 Data::Dumper
模块采用Perl数据结构并将其转换为可执行的Perl代码。这对于调试很有用,有时可以用于序列化,但是打印出字符串或标量永远不会好。所有包含的数据都将被引用,以便成为有效的Perl,这不是您想要的。
read
开始从头开始填充目标变量(索引0)。指定偏移量作为第4个参数(例如-1
)以附加您正在读取的数据。
binmode
仅在Windows上有用。
在Windows上,\n
可以是逻辑换行符(例如“\r\n
”)。在网络中使用字节值\015\012
。
在第二个示例中,您使用$buffer
中的$ENV{CONTENT_LENGTH}
个字符覆盖STDIN
。您可能还希望打印此内容长度以用于调试目的。
FCGI::Request()
返回一个请求对象。 documentation表示您每次请求Accept
,可能是循环。如果成功,Accept
方法返回值>= 0
。