2020-11-18 13:54:47 +01:00
# What is Uguu?
2020-11-18 12:54:47 +01:00
2020-11-18 13:53:42 +01:00
Uguu is a simple temporary file uploading and sharing platform where files get deleted after X amount of time.
2020-11-18 12:54:47 +01:00
## Features
- One click uploading, no registration required
- A minimal, modern web interface
- Drag & drop supported
- Upload API with multiple response choices
- JSON
- HTML
- Text
- CSV
- Supports [ShareX ](https://getsharex.com/ ) and other screenshot tools
### Demo
See the real world example at [uguu.se ](https://uguu.se ).
2015-02-11 18:01:03 +01:00
2020-11-18 12:54:47 +01:00
## Requirements
2016-05-15 17:06:36 +02:00
2020-11-18 13:43:44 +01:00
Original development environment is Nginx + PHP5.3 + SQLite, but is confirmed to
work with Apache 2.4 and newer PHP versions like PHP7.3.
2020-11-18 12:54:47 +01:00
## Install
For the purposes of this guide, we won't cover setting up Nginx, PHP, SQLite,
Node, or NPM. So we'll just assume you already have them all running well.
2020-11-19 00:17:12 +01:00
**NPM/Node is only needed to compile the files, Uguu runs on PHP.**
2020-11-19 00:10:42 +01:00
2020-11-18 12:54:47 +01:00
### Compiling
First you must get a copy of the uguu code. To do so, clone this git repo.
```bash
git clone https://github.com/nokonoko/uguu
2016-05-15 17:06:36 +02:00
```
2020-11-18 13:14:11 +01:00
Assuming you already have Node and NPM working, compilation is easy.
2020-11-18 12:54:47 +01:00
2020-11-18 13:15:44 +01:00
Run the following commands to do so, please configure `dist.json` before you compile.
2020-11-18 12:54:47 +01:00
```bash
cd uguu/
make
make install
2016-05-15 17:06:36 +02:00
```
2020-11-18 12:54:47 +01:00
OR
```bash
make install DESTDIR=/desired/path/for/site
2016-05-15 17:06:36 +02:00
```
2020-11-18 12:54:47 +01:00
After this, the uguu site is now compressed and set up inside `dist/` , or, if specified, `DESTDIR` .
## Configuring
Front-end related settings, such as the name of the site, and maximum allowable
file size, are found in `dist.json` . Changes made here will
only take effect after rebuilding the site pages. This may be done by running
`make` from the root of the site directory.
2016-05-15 17:06:36 +02:00
2020-11-18 23:38:53 +01:00
Back-end related settings, such as database configuration, and path for uploaded files, are found in `includes/settings.inc.php` . Changes made here take effect immediately. Change the following settings:
2020-11-18 13:41:27 +01:00
```php
define('UGUU_DB_CONN', 'sqlite:/path/to/db/uguu.sq3');
define('UGUU_FILES_ROOT', '/path/to/file/');
define('UGUU_URL', 'https://subdomainforyourfiles.your.site');
```
2020-11-18 12:54:47 +01:00
If you intend to allow uploading files larger than 2 MB, you may also need to
increase POST size limits in `php.ini` and webserver configuration. For PHP,
modify `upload_max_filesize` and `post_max_size` values. The configuration
option for nginx webserver is `client_max_body_size` .
2020-11-18 13:07:28 +01:00
Edit checkdb.sh and checkfiles.sh to the proper paths:
```bash
sqlite3 /path/to/db/uguu.sq3 "DELETE FROM files WHERE date < = strftime('%s', datetime('now', '-1 day'));"
```
```bash
find /path/to/files/ -mmin +1440 -exec rm -f {} \;
```
Then add them to your crontab:
2020-11-18 13:04:23 +01:00
```bash
0,30 * * * * bash /path/to/checkfiles.sh
0,30 * * * * bash /path/to/checkdb.sh
```
These scripts check if DB entries and files are older then 24 hours and if they are deletes them.
2020-11-18 13:46:32 +01:00
## MIME/EXT Blocking
2020-11-18 23:38:53 +01:00
Blocking certain filetypes from being uploaded can be changed by editing the following settings in `includes/settings.inc.php` :
2020-11-18 13:46:32 +01:00
```php
define('CONFIG_BLOCKED_EXTENSIONS', serialize(['exe', 'scr', 'com', 'vbs', 'bat', 'cmd', 'htm', 'html', 'jar', 'msi', 'apk', 'phtml']));
define('CONFIG_BLOCKED_MIME', serialize(['application/msword', 'text/html', 'application/x-dosexec', 'application/java', 'application/java-archive', 'application/x-executable', 'application/x-mach-binary']));
```
By default the most common malicious filetypes are blocked.
2020-11-18 12:54:47 +01:00
## Using SQLite as DB engine
We need to create the SQLite database before it may be used by uguu.
Fortunately, this is incredibly simple.
First create a directory for the database, e.g. `mkdir /var/db/uguu` .
Then, create a new SQLite database from the schema, e.g. `sqlite3 /var/db/uguu/uguu.sq3 -init /home/uguu/sqlite_schema.sql` .
Then, finally, ensure the permissions are correct, e.g.
```bash
2020-11-18 13:20:44 +01:00
chown www-data:www-data /var/db/uguu
2020-11-18 12:54:47 +01:00
chmod 0750 /var/db/uguu
chmod 0640 /var/db/uguu/uguu.sq3
2018-03-19 04:41:17 +01:00
```
2020-11-18 12:54:47 +01:00
2020-11-18 23:38:53 +01:00
Finally, edit `includes/settings.inc.php` to indicate this is the database engine you would like to use. Make the changes outlined below
2020-11-18 12:54:47 +01:00
```php
define('UGUU_DB_CONN', '[stuff]'); ---> define('UGUU_DB_CONN', 'sqlite:/var/db/uguu/uguu.sq3');
define('UGUU_DB_USER', '[stuff]'); ---> define('UGUU_DB_USER', null);
define('UGUU_DB_PASS', '[stuff]'); ---> define('UGUU_DB_PASS', null);
2018-03-19 04:41:17 +01:00
```
2020-11-18 12:54:47 +01:00
*NOTE: The directory where the SQLite database is stored, must be writable by the web server user*
2020-11-19 02:20:40 +01:00
## Nginx example config
2020-11-18 12:54:47 +01:00
2020-11-19 02:20:40 +01:00
I won't cover settings everything up, here are some Nginx examples. Use [Letsencrypt ](https://letsencrypt.org ) to obain a SSL cert.
Main domain:
```
server{
listen 443 ssl;
server_name www.yourdomain.com yourdomain.com;
ssl on;
ssl_certificate /path/to/fullchain.pem;
ssl_certificate_key /path/toprivkey.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
root /path/to/uguu/dist/;
autoindex off;
access_log off;
index index.html index.php;
location ~* \.(ico|css|js|ttf)$ {
expires 7d;
}
location ~* \.php$ {
fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
fastcgi_intercept_errors on;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
error_page 404 /4041x.html;
error_page 403 /4041x.html;
location /4041x.html {
root /home/neku/www;
}
}
´ ´ ´
Subdomain serving files (do not enable PHP here):
´ ´ ´
server{
listen 443 ssl;
server_name www.subdomain.serveryourfiles.com subdomain.serveryourfiles.com;
ssl on;
ssl_certificate /path/to/fullchain.pem;
ssl_certificate_key /path/to/privkey.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
root /path/where/uploaded/files/are/stored/;
autoindex off;
access_log off;
index index.html;
}
´ ´ ´
To redirect HTTP to HTTPS make a config for each domain like so:
```
server {
listen 80;
server_name www.domain.com domain.com;
return 301 https://domain.com$request_uri;
}
´ ´ ´
2020-11-18 12:54:47 +01:00
2020-11-18 14:00:15 +01:00
## API
To upload using curl or make a tool you can post using:
2020-11-18 14:01:27 +01:00
```
curl -i -F files[]=@yourfile .jpeg https://uguu.se/upload.php (JSON Response)
```
2020-11-18 14:00:15 +01:00
2020-11-18 12:54:47 +01:00
## Getting help
2020-11-18 12:56:49 +01:00
Hit me up at [@nekunekus ](https://twitter.com/nekunekus ) or email me at neku@pomf .se
2016-05-15 17:06:36 +02:00
2020-11-18 12:54:47 +01:00
## Credits
2015-02-11 18:01:03 +01:00
2020-11-18 15:45:53 +01:00
Uguu is based on [Pomf ](http://github.com/pomf/pomf ).
2016-05-14 11:30:07 +02:00
2020-11-18 12:54:47 +01:00
## License
2016-05-14 11:30:07 +02:00
2020-11-18 12:54:47 +01:00
Uguu is free software, and is released under the terms of the Expat license. See
`LICENSE` .