Commit Graph

271 Commits (v1.1.1)

Author SHA1 Message Date
nokonoko ee3976f997 exclude js faq & tools
The FAQ & Tools page does not use JS so it should not include it.
2021-06-27 15:17:20 +02:00
nokonoko 35c123932e favicon 2021-06-27 14:57:32 +02:00
nokonoko bab8d133ef Merge branch 'master' of https://github.com/nokonoko/Uguu 2021-06-27 14:45:42 +02:00
nokonoko e96464c2c1 update favicon 2021-06-27 14:45:38 +02:00
Eric Johansson (neku) 0b95d9d192
Update README.md 2021-06-24 13:46:00 +02:00
Eric Johansson (neku) 0908af85dd
Update README.md 2021-06-24 10:23:43 +02:00
Eric Johansson (neku) ab5bedd351
Update README.md 2021-06-24 01:59:58 +02:00
nokonoko d37c73140b unused code 2021-06-24 01:37:48 +02:00
Eric Johansson (neku) 1cbe610065
Update Makefile 2021-06-24 01:04:54 +02:00
nokonoko 8acaf8998f Update package.json 2021-06-24 00:56:22 +02:00
nokonoko 01eb4b5a12 Merge branch 'master' of https://github.com/nokonoko/Uguu 2021-06-24 00:47:13 +02:00
nokonoko cef498522c make failing fix 2021-06-24 00:47:10 +02:00
Eric Johansson (neku) 56586decf4
Update README.md 2021-06-24 00:18:41 +02:00
nokonoko 05e3c435c3 remove examples 2021-06-24 00:15:03 +02:00
nokonoko 7887c7e4b3 Update README.md 2021-06-23 23:25:34 +02:00
nokonoko e52293dd4a Update README.md 2021-06-23 23:23:17 +02:00
nokonoko cd738888ba fuck off DS_Store 2021-06-23 19:57:20 +02:00
nokonoko 60d1236769 Update README.md 2021-06-23 19:36:06 +02:00
nokonoko 13a9292fec pasting added 2021-06-23 19:22:26 +02:00
nokonoko c036012e55 support for pasting files 2021-06-23 19:18:07 +02:00
nokonoko d90f9e58e9 update favicon 2021-06-23 14:10:24 +02:00
nokonoko 946c385baf nginx examples
scaled down
2021-06-23 13:19:54 +02:00
nokonoko 9983c2dc93 better nginx config
File download domain should not use HTTP/2, HTTP/1 is usually a tad faster at delivering downloads.
2021-06-23 13:13:08 +02:00
nokonoko 03a91b2a85 Update README.md 2021-06-23 11:22:17 +02:00
nokonoko d3aa5eb9a6 Update README.md 2021-06-23 11:12:58 +02:00
Eric Johansson (neku) d3f3618ddb
Update README.md 2021-06-22 20:37:28 +02:00
Eric Johansson (neku) 35d52f6343
Update README.md 2021-06-22 20:35:22 +02:00
Eric Johansson (neku) a906f6b027
Update README.md 2021-06-22 20:23:07 +02:00
Eric Johansson (neku) c05fb5b717
Update README.md 2021-06-22 20:18:56 +02:00
Eric Johansson (neku) a51784b69d
Update README.md 2021-06-22 20:12:03 +02:00
nokonoko d9744300eb bug fix
Fixes a bug where the hash isn't inserted into the DB, also adds the option to enable anti-dupe
2021-06-22 19:08:31 +02:00
Eric Johansson (neku) 84c4a07100
Update .gitignore 2021-06-22 18:16:25 +02:00
Eric Johansson (neku) 1f6cac06b6
Update X.Y.conf 2021-06-22 15:46:13 +02:00
nokonoko 2bf99e4257 Update .gitignore 2021-06-22 15:22:46 +02:00
nokonoko 6f1e37470b Update README.md 2021-06-22 11:29:04 +02:00
nokonoko 55177426c0 Update README.md 2021-06-22 11:24:34 +02:00
nokonoko 5df9340f1a Update README.md 2021-06-22 11:19:54 +02:00
Eric Johansson (neku) f30af19661
Merge pull request #66 from fredsterorg/master
Spelling edit
2021-06-22 11:14:01 +02:00
nokonoko d3acd4328d Update README.md 2021-06-21 22:36:21 +02:00
nokonoko db13e9c4c6 add a / 2021-06-21 15:31:00 +02:00
nokonoko 317f689904 fixed empty db when not logging ip
If you set the config value to no in order to not log IP's it would not insert anything to the DB because of the missing empty ip.
2021-06-21 14:54:54 +02:00
Eric Johansson (neku) a06deebce9
Merge pull request #67 from Ryanll8798/patch-1 2021-06-20 13:07:40 +02:00
Ryanll8798 a189f9a329
Update X.Y.conf
server{
listen	        443 ssl http2;
server_name		www.X.Y X.Y;
ssl on;
ssl_certificate /etc/letsencrypt/live/X.Y/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/X.Y/privkey.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
ssl_ecdh_curve secp384r1;
ssl_buffer_size 2k;
ssl_session_tickets off;

root /var/www/uguu/dist/;
autoindex		off;
access_log      off;
index index.html index.php;
etag on;

location ~* \.(?:css|js|jpg|jpeg|gif|png|ico|xml|eot|woff|woff2|ttf|svg|otf)$ {
add_header        Cache-Control "public";
expires           30d;
}

 gzip on;
 gzip_min_length 1000;
 gzip_comp_level 6;
 gzip_proxied any;
 gzip_types text/css text/js text/javascript application/javascript application/x-javascript;

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;
}

}
2021-06-19 16:11:45 -04:00
Eric Johansson (neku) c367c9388c
Update nginx.conf 2021-06-10 11:18:05 +02:00
Eric Johansson (neku) 50d2ae5660
Update X.Y.conf 2021-06-06 22:35:22 +02:00
Eric Johansson (neku) bbd7acc88f
Update X.Y.conf 2021-06-06 20:48:03 +02:00
Eric Johansson (neku) 9ed3650ffb
Update nginx.conf 2021-06-06 19:47:50 +02:00
Eric Johansson (neku) e9d9f73c92
Update X.Y.conf 2021-06-06 19:45:19 +02:00
Eric Johansson (neku) 264033d188
Update X.Y.conf 2021-06-06 19:38:55 +02:00
fredster33 7066bd2c43
grammar edit 2021-06-05 14:11:47 -07:00