1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
mod_upload_progress for Debian
==============================
The following configuration snippet (to be added in a <VirtualHost> section)
tracks upload made to "/upload.html", with progress data available on
"/progress":
<Location /upload.html>
# enable tracking uploads in /upload.html
TrackUploads On
</Location>
<Location /progress>
# enable upload progress reports in /progress
ReportUploads On
</Location>
This configuration should be enough to test upload progress, once
`/usr/share/doc/libapache2-mod-upload-progress/examples/upload.html` is
available at "/upload.html" (for example by copying it to `/var/www`).
This example web page mostly borrows from the code snippets available at:
* http://wiki.nginx.org/NginxHttpUploadProgressModule
* http://blog.lighttpd.net/articles/2006/08/01/mod_uploadprogress-is-back
|