Nextcloud에 Redis 설정 추가하기
페이지 정보
본문
출처: https://www.wenyanet.com/opensource/ko/611438cad70fe9016c407f78.html
NextCloud의 config.php 파일을 편집하여 끝에 몇 가지 옵션을 추가합니다.
여기에 Redis의 일부 수정, 개선 및 활성화가 입력됩니다.
vi config/www/nextcloud/config/config.php
다음 콘텐츠를 추가합니다.
'redis' => array ( 'host' => 'redis', 'port' => 6379, 'password' => 'YOU_PASSWORD_REDIS', ), 'default_phone_region' => 'KR', 'trashbin_retention_obligation' => '30, 60', 'overwriteprotocol' => 'https', 'maintenance' => false, 'default_language' => 'ko_KR', 'default_locale' => 'ko_KR',
아래 내용이 맞는 듯
'default_language' => 'ko', ############ 언어
'default_locale' => 'ko_KR', ########## 지역설정
'default_phone_region' => 'KR', ########## 전번
'trusted_proxys' => '172.90.0.1',
'overwriteprotocol' => 'https',
'OVERWRITEHOST' => 'mydomain.com', ##본인 도메인
'overwritecondaddr' => '^172\.90\.0\.1$',
'memcache.distributed' => '\OC\Memcache\Redis',
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => [
'host' => 'redis',
'port' =>6379 ,
'dbindex' => 0,
'password' => '123456',
'timeout' => 1.5,
],
브라우저에서 업로드 시 10MB 고정 해제 방법
occ config:app:set files max_chunk_size --value 524288000
댓글목록
등록된 댓글이 없습니다.