User Tools

Site Tools


computing:nextcloud

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
computing:nextcloud [2023/12/17 00:27] oemb1905computing:nextcloud [2024/04/13 21:18] (current) oemb1905
Line 280: Line 280:
   sudo -u www-data truncate nextcloud.log  --size 0   sudo -u www-data truncate nextcloud.log  --size 0
  
-This will put the logs on a schedule and remove old errors in due time.+This will put the logs on a schedule and remove old errors in due time. When I put Nextcloud behind a reverse proxy, I had to change the following in the primary config:
  
- --- //[[jonathan@haacksnetworking.org|oemb1905]] 2023/12/16 18:56//+  sudo nano /var/www/inside.outsidebox.vip/public_html/config/config.php 
 +  'trusted_domains' => 
 +    array ( 
 +      0 => 'inside.outsidebox.vip', 
 +      1 => '10.13.13.33', 
 +    ), 
 +  'overwritehost' => 'inside.outsidebox.vip', 
 +  'overwriteprotocol' => 'https', 
 + 
 +This ensures that the upstream subnet and node is trusted and that external url requests don't try to access the subnet directly. There are other notes in the proxmox tutorial since that is when I set up the reverse proxy setup. There is now a recommended maintenance window setting: 
 + 
 +  'maintenance_window_start' => 1, 
 + 
 + --- //[[webmaster@haacksnetworking.org|oemb1905]] 2024/04/13 21:17//
computing/nextcloud.txt · Last modified: 2024/04/13 21:18 by oemb1905