Compare commits

..

No commits in common. "c7574ecb800dfdc773137ff79ed6ed53801fd9b0" and "0984db04e4eae1699d0c9dfcc9487aeb30177575" have entirely different histories.

2 changed files with 2 additions and 20 deletions

@ -22,20 +22,6 @@ http {
root /var/www/html; root /var/www/html;
index index.html index.htm; index index.html index.htm;
# TCP optimizations
tcp_nopush on;
tcp_nodelay on;
# Gzip
sendfile on;
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 8;
gzip_buffers 16 64k;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
client_max_body_size 500M; # Will get replaced by the environment variable MAX_UPLOAD_SIZE client_max_body_size 500M; # Will get replaced by the environment variable MAX_UPLOAD_SIZE
location /upload.php { location /upload.php {
@ -52,12 +38,8 @@ http {
location / { location / {
expires 7d; expires 7d;
open_file_cache max=1000 inactive=60s;
open_file_cache_valid 60s;
open_file_cache_min_uses 1;
open_file_cache_errors on;
# Serve the file directly from disk # Serve the file directly from disk
try_files $uri $uri/ =404; try_files $uri $uri/ =404;
} }
}
} }

@ -93,7 +93,7 @@ try {
$secret = $_POST['secret']; // The secret key $secret = $_POST['secret']; // The secret key
$file = $_FILES['sharex']; // The uploaded file $file = $_FILES['sharex']; // The uploaded file
// Page to show if someone visits the upload script // Page to show if someone visits the upload page
if (!$secret && !$file) { if (!$secret && !$file) {
returnJson(array( returnJson(array(
'status' => 'OK', 'status' => 'OK',