Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lobrol/ubuntu-nextcloud
A script to install all that's needed for a NextCloud instance with NFS disk
https://github.com/lobrol/ubuntu-nextcloud
nextcloud nfs ubuntu
Last synced: 15 days ago
JSON representation
A script to install all that's needed for a NextCloud instance with NFS disk
- Host: GitHub
- URL: https://github.com/lobrol/ubuntu-nextcloud
- Owner: LoBrol
- Created: 2024-04-25T13:10:55.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-10-15T17:29:59.000Z (about 1 month ago)
- Last Synced: 2024-10-16T22:26:55.901Z (29 days ago)
- Topics: nextcloud, nfs, ubuntu
- Language: Shell
- Homepage:
- Size: 237 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Copy this for installation:
```
wget https://raw.githubusercontent.com/LoBrol/ubuntu-nextcloud/main/setup.sh
chmod +x setup.sh
sudo ./setup.sh
```
Remember to change the variablesUseful commands:
```
sudo -u www-data php --define apc.enable_cli=1 /var/www/nextcloud/occ theming:config disable-user-theming yes # disable user theming
sudo -u www-data php --define apc.enable_cli=1 /var/www/nextcloud/occ maintenance:repair # repair NextCloud installation
sudo -u www-data php --define apc.enable_cli=1 /var/www/nextcloud/occ files:scan --all # scan all file of all users
sudo -u www-data php --define apc.enable_cli=1 /var/www/nextcloud/occ config:app:set files max_chunk_size --value 0 # disable the chunking of the file
sudo -u www-data php --define apc.enable_cli=1 /var/www/nextcloud/occ config:system:set skeletondirectory # disable default files when creating user
sudo -u www-data php --define apc.enable_cli=1 /var/www/nextcloud/occ maintenance:update:htaccess # update htaccess
```