This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Jun 16 09:32:16 -0700 2008 | [drogus] |
| |
MIT-LICENSE | Tue Jun 17 00:47:46 -0700 2008 | [drogus] |
| |
README | Thu Jun 26 02:09:46 -0700 2008 | [drogus] |
| |
mod_upload_progress.c | Thu Jun 26 03:02:36 -0700 2008 | [drogus] |
README
Apache upload progress module. Works with mod_passenger (aka mod_rails). It's MIT license.
To install and activate module:
apxs2 -c -i -a mod_upload_progress.c
-c -> compile
-i -> install (copy upload_progress_module.so to apache lib folder)
-a -> activate (add LoadModule line to httpd.conf)
Global config:
you can define maximum size for shared memory (default is 50kB):
UploadProgressSharedMemorySize 1024000 # sets memory size to 1MB
Config for vhost:
<Location />
# enable tracking uploads in /
TrackUploads On
</Location>
<Location /progress>
# enable upload progress reports in /progress
ReportUploads On
</Location>





