Merge pull request #6338 from nextcloud/enh/6334/restart-netcat

nextcloud: restart netcat once a day to ensure that it stays reachable
This commit is contained in:
Simon L. 2025-05-02 13:50:08 +02:00 committed by GitHub
commit f86c9f66d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,5 +39,7 @@ stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
command=nc -lk 9001
# Restart the netcat command once a day to ensure that it stays reachable
# See https://github.com/nextcloud/all-in-one/issues/6334
command=timeout 86400 nc -lk 9001
user=www-data