#author("2022-04-29T19:51:22+09:00","default:regex","regex")
*nextcloudサービスを作ってみる [#kf0a9eec]
ここのところ、グーグルがPhotoに容量規制をかけてきたので、ちょっと工夫します。

*PukiwikiとWordpressがうごいてるので、PHP,Maria SQLはもう動いています。 [#d46043b9]
 php -v
 PHP 8.1.5 (cli) (built: Apr 21 2022 10:14:45) (NTS)
 Copyright (c) The PHP Group
 Zend Engine v4.1.5, Copyright (c) Zend Technologies
     with Zend OPcache v8.1.5, Copyright (c), by Zend Technologies
~
 Server version: 10.3.34-MariaDB-0ubuntu0.20.04.1 Ubuntu 20.04
~
*Webroot/nextcloudに作る方法 [#u6862291]
ダウンロード~

 cd /tmp
 wget https://github.com/nextcloud/server/archive/refs/tags/v24.0.0rc3.tar.gz
 tar xvzf v24.0.0rc3.tar.gz
~
nextcloudのルートを作る。
 sudo mkdir <あなたの>webroot/nextcloud/
 sudo cp -r server-24.0.0rc3/* /publicmnt/Public/webroot/nextcloud/
~
※そのほかに、3rdpartyについてzipで落として、nextcloud/3rdpartyに入れる必要ありました。~

 cd <あなたの>webroot/nextcloud/
 sudo cp config/config.sample.php config/config.php

-----------
nextcloud/config/config.php

<?php
$CONFIG = [
'htaccess.RewriteBase' => '/nextcloud/',
];
------------


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS