2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

nextcloud で サブディレクトリ運用

Last updated at Posted at 2020-11-19
  • DocumentRoot の下に ./nextcloud/を作ってそこで稼働させる例。
nextcloud/config/config.php
  <?php
  $CONFIG = array (
    (略)
+   'htaccess.RewriteBase' => '/nextcloud/',
  );

途中でdataディレクトリの場所を変更したい場合

nextcloud/config/config.php
  <?php
  $CONFIG = array (
    (略)
-   'datadirectory' => '/var/www/html/data',
+   'datadirectory' => '/var/www/html/nextcloud/data',
  );
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?