52 lines
1.4 KiB
HTML
52 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Quick fix - Johannes Olzem</title>
|
|
<meta name="description" content="Johannes Olzem's personal website">
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" href="/favico.ico">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="/" class="header-logo">
|
|
<img src="/img/header-logo.webp" alt="logo">
|
|
</a>
|
|
<span class="header-text">Johannes Olzem</span>
|
|
<ul>
|
|
<li>
|
|
<a href="/about/">About</a>
|
|
</li>
|
|
<li>
|
|
<a href="/blog/">Blog</a>
|
|
</li>
|
|
<li>
|
|
<a href="/contact/">Contact</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
<main>
|
|
<h1>Quick fix</h1>
|
|
<h2>Nextcloud file not supported error</h2>
|
|
<p class="code">
|
|
exif_read_data(): File not supported at
|
|
/var/www/html/lib/private/Metadata/Provider/ExifProvider.php#59
|
|
</p>
|
|
<p>
|
|
Upload over IP and port rather than over nginx proxy.
|
|
</p>
|
|
<h2>Explanation</h2>
|
|
<p>
|
|
The request payload (the data your are trying to upload) is too large for
|
|
nginx.
|
|
</p>
|
|
</main>
|
|
<footer>
|
|
© 2021 - <script>document.write(new Date().getFullYear())</script> Johannes Olzem
|
|
<br>
|
|
<small>This website is free software. You can redistribute and modify it under the terms of the GNU General Public License V3.</small>
|
|
</footer>
|
|
</body>
|
|
|