Added the configs

This commit is contained in:
2024-02-10 11:01:32 +01:00
parent 44c8c93f04
commit 4bd5f729c5
9 changed files with 334 additions and 0 deletions

6
config/nextcloud/wrapper Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
if [[ $USER == "nextcloud" ]]; then
php --define apc.enable_cli=1 /nextcloud/occ $@
else
sudo -u nextcloud php --define apc.enable_cli=1 /nextcloud/occ $@
fi