Skip to content

Latest commit

 

History

History
128 lines (107 loc) · 4.7 KB

notes-aanno.md

File metadata and controls

128 lines (107 loc) · 4.7 KB

Aanno's notes

This is a try to have a out-of-box configuration for podman, based on .examples/docker-compose/with-nginx-proxy-self-signed-ssl/mariadb/fpm

config.php

The standard /var/www/html/config/config.php created is:

<?php
$CONFIG = array (
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'apps_paths' => 
  array (
    0 => 
    array (
      'path' => '/var/www/html/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 => 
    array (
      'path' => '/var/www/html/custom_apps',
      'url' => '/custom_apps',
      'writable' => true,
    ),
  ),
  'memcache.distributed' => '\\OC\\Memcache\\Redis',
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'redis' => 
  array (
    'host' => 'redis',
    'password' => '',
    'port' => 6379,
  ),
  'instanceid' => 'ocaxddcsjccr',
  'passwordsalt' => 'v/rDBw8DwmhClZcyRtI3o+Px70GYWA',
  'secret' => '3WQ7vRo42jtjLNffVhVuUC+0+OOk8AyIpmws9bMOJeapJkOT',
  'trusted_domains' => 
  array (
    0 => 'localhost:8080',
  ),
  'datadirectory' => '/var/www/html/data',
  'dbtype' => 'mysql',
  'version' => '20.0.6.1',
  'overwrite.cli.url' => 'http://localhost:8080',
  'dbname' => 'nextcloud',
  'dbhost' => 'db',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'nextcloud',
  'dbpassword' => 'secret',
  'installed' => true,
);

Misc

Nextcloud notes

Data dir

Podman Compose notes

Alternative Web Server

Openlitespeed

Known (unresolved) problems