1
0

Small fixes for first test deployment

This commit is contained in:
2022-05-07 14:46:49 +02:00
parent 1a21c7718d
commit 5740479dd7
5 changed files with 11 additions and 9 deletions

View File

@@ -1,4 +0,0 @@
package de.nbscloud.files.task;
public class OrphanedThumbnailCleanup {
}

View File

@@ -5,8 +5,8 @@ info.app.description=A simple web file admin app
# Knob to configure the base dir where files stores and reads files # Knob to configure the base dir where files stores and reads files
# Make sure the permissions match # Make sure the permissions match
#nbs-cloud.files.baseDir=/home/marius/nbstest
nbs-cloud.files.baseDir=/home/marius nbs-cloud.files.baseDir=/home/marius
#nbs-cloud.files.baseDir=/opt/nextcloud_data/marius/files
# Knob to configure whether hidden files (e.g. starting with '.' on *NIX) # Knob to configure whether hidden files (e.g. starting with '.' on *NIX)
# will be filtered in the file view # will be filtered in the file view

View File

@@ -168,3 +168,7 @@
width: 1em; width: 1em;
} }
} }
#gallery-link {
text-decoration: none;
}

View File

@@ -28,7 +28,7 @@
</div> </div>
<div class="menu-spacer"></div> <div class="menu-spacer"></div>
<div> <div>
<a th:href="@{/files/gallery}"> <a id="gallery-link" th:href="@{/files/gallery}">
<span class="icon files-menu-icon">&#xe3b6;</span> <span class="icon files-menu-icon">&#xe3b6;</span>
</a> </a>
</div> </div>

View File

@@ -15,6 +15,8 @@ spring.servlet.multipart.max-file-size=-1
spring.servlet.multipart.max-request-size=-1 spring.servlet.multipart.max-request-size=-1
logging.level.de.nbscloud=DEBUG logging.level.de.nbscloud=DEBUG
logging.file=nbscloud.log # No log file declaration as we want the process supervisor to take care of capturing the std out and redirect it
logging.file.max-history=7 # (e.g. systemd -> journald)
logging.file.max-size=50MB
server.servlet.context-path=/nbscloud
server.port=9966