Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

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...

nextcloud
nextcloud

Update Commands

NextCloud

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...

nextcloud
nextcloud
commands
commands
bash
bash

Truncate Logs

NextCloud

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
nextcloud
clear logs
clear logs
truncate
truncate

NextCloud Config Example

NextCloud

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
nextcloud
config
config

NextCloud NGINX Reverse Proxy Site Config

NextCloud

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...

nextcloud
nextcloud
nginx
nginx
reverse proxy
reverse proxy
site config
site config

OCC Commands

NextCloud

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...

nextcloud
nextcloud
occ
occ

Allow Apple Media Format Previews

NextCloud

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 =...

nextcloud
nextcloud
media
media
HEIC
HEIC