Advanced Search
Search Results
7 total results found
NextCloud
Project Website: https://nextcloud.com/ Source Code: https://github.com/nextcloud Proxmox Helper Script: https://community-scripts.github.io/ProxmoxVE/scripts?id=nextcloudpi Nextcloud Hub integrates the four key Nextcloud products Files, Talk, Groupware...
Update Commands
As with most things in my world, it seems following the directions simply don't work like they are intended, and as such, I have to modify commands to execute tasks tailored to my installation. Here is my list of those, as I run across them. Ensure you are in...
Truncate Logs
I don't programmatically clear my NC logs, I do it manually with this command: truncate -s 0 /opt/ncdata/data/nextcloud.log I run this from the LXC console.
NextCloud Config Example
This is an example of my config.php file for NC. Its usually found in: /var/www/nextcloud/config/ <?php $CONFIG = array ( 'passwordsalt' => 'your-password-salt', 'secret' => 'your-secret-string', 'trusted_domains' => array ( 0 => 'localhost...
NextCloud NGINX Reverse Proxy Site Config
This is the site config I use for my NGINX RP to point my sub to the LXC running NextCloud: server { listen 80; server_name cloud.domain.com; return 301 https://$host$request_uri; } server { listen 443 ssl; server_name cloud.domai...
OCC Commands
OCC Commands allow for some function. OCC stands for OwnCloud Command, and is the command line interface tool for managing and configuring NextCloud (and OwnCloud). The OCC command allows admins to perform various tasks directly from the terminal without havin...
Allow Apple Media Format Previews
Apple strikes again, this time with NC. To enable HEIC and other format previews in your NC installation, add the following to your config.php file: 'enabledPreviewProviders' => array ( 0 => 'OC\\Preview\\PNG', 1 => 'OC\\Preview\\JPEG', 2 =...