强迫Perl Dancer讲HTTP / 1.1

时间:2012-12-03 09:39:34

标签: perl http dancer

如何设置Perl Dancer以默认使用HTTP / 1.1进行回答?我刚刚启动了一个hello world应用程序,使用HTTP / 1.1解决了我的问题,并使用HTTP / 1.0进行了解答。

foo@deathstar:~/MyWeb-App/lib/MyWeb$ curl -v http://localhost:3000

About to connect() to localhost port 3000 (#0)
> *   Trying 127.0.0.1... connected
> * GET / HTTP/1.1
> User-Agent: curl/7.22.0 (i686-pc-linux-gnu) libcurl/7.22.0 OpenSSL/1.0.1 zlib/1.2.3.4 libidn/1.23 librtmp/2.3
>  Host: localhost:3000
> Accept: */*
> HTTP 1.0, assume close after body < HTTP/1.0 200 OK < Server: Perl Dancer 1.311 < Content-Length: 5601 < Content-Type: text/html;
> charset=utf-8 < X-Powered-By: Perl Dancer 1.311

1 个答案:

答案 0 :(得分:2)

看起来HTTP协议在HTTP :: Server :: Simple :: PSGI中是硬编码的,这是Dancer在独立模式下运行时使用的。

https://metacpan.org/module/Dancer::Deployment详细介绍了部署应用的选项。

作为一个快速测试,我做了plackup -s Starman -a ./hello_world.pl,它用HTTP / 1.1而不是HTTP / 1.0来回答。