Simple app written in PHP for sharing files. Logs file hits to MySQL and Prowl (iOS). Utilizes nginx's X-Accel-Redirect to minimize the load.
- Perfect for home/office servers. Just drop a file in a folder to share it.
- Handles >2GB file sizes even on 32 bit plattforms.
- Growl notification for both desktop and mobile.
- Tracks downloads.
server {
listen 80;
server_name share.dev;
root /www/share;
location /f/ {
internal;
alias /www/share/files/;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param CONFIG_FILE config.php; # CONFIG FILE PATH GOES HERE
include fastcgi_params;
}
location /css/ {}
location / {
rewrite ^ /index.php last;
}
}
<?php
return array(
'timezone' => 'Europe/Stockholm',
'locale' => 'en_US.UTF-8',
'dir' => array('files' => 'files/'),
'db' => array('user' => 'root', 'pass' => '', 'dbname' => 'share'),
'users' => array('username' => 'password'),
'prowl' => array('keys' => array('xxxyyyzzz'), 'app' => 'Share')
);
Copyright 2012, Markus Hedlund, Snowfire.
Licensed under the MIT License.
Redistributions of files must retain the above copyright notice.