sebastiannielsen
Programmer
Im building a transparant antiSSL-proxy in perl.
In have a:
RewriteRule ^/(.*)$ /nph-netscript.cgi/$1
in the apache.conf file.
If an user uploads a big file, it gets timeouted. This because first:
User uploads whole file
LWP uploads file to the server given in $ENV{'HOST'}
LWP downloads all info from the upstream server
LWP sends info to the user.
Are it any possibly to "stream" data in chunks from and to LWP, so the communication goes faster.
In have a:
RewriteRule ^/(.*)$ /nph-netscript.cgi/$1
in the apache.conf file.
If an user uploads a big file, it gets timeouted. This because first:
User uploads whole file
LWP uploads file to the server given in $ENV{'HOST'}
LWP downloads all info from the upstream server
LWP sends info to the user.
Are it any possibly to "stream" data in chunks from and to LWP, so the communication goes faster.