File: README.Debian

package info (click to toggle)
apache-upload-progress-module 0.2%2Bgit20220203.4467d50-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 176 kB
  • sloc: ansic: 1,394; makefile: 44
file content (24 lines) | stat: -rw-r--r-- 842 bytes parent folder | download | duplicates (4)
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