IT/Software/Web Applications/NextCloud: Difference between revisions
Access restrictions were established for this page. If you see this message, you have no access to this page.
Walttheboss (talk | contribs) No edit summary |
Walttheboss (talk | contribs) |
||
Line 3: | Line 3: | ||
As with most things of this sort the prices will soon appear and it will become a paid product | As with most things of this sort the prices will soon appear and it will become a paid product | ||
=== Install === | ===Install=== | ||
=== Configure === | ===Configure=== | ||
Make sure you have a big directory outside of www AND that the directory is web-writeable and mounted at boot. | |||
=== Tricks === | ===Tricks=== | ||
==== Syncing Files ==== | ====Syncing Files==== | ||
*This very important in the self hosted world. How do we put and get files outside of the app itself. | |||
*This very important in the self hosted world. How do we put and get files outside of the app itself. | |||
*This can easily be done though you need root access. | *This can easily be done though you need root access. | ||
*Use rsync or similar to sync or copy programs right into the directories. | *Use rsync or similar to sync or copy programs right into the directories. | ||
* Then you need to run an occ (OwnCloudCommand) program with php to rescan for files. Then it will add all the files to the database. | *Then you need to run an occ (OwnCloudCommand) program with php to rescan for files. Then it will add all the files to the database. | ||
<code>sudo -u www-data php /var/www/html/mir.next.msgvte/occ --verbose --unscanned files:scan --all | <code>sudo -u www-data php /var/www/html/mir.next.msgvte/occ --verbose --unscanned files:scan --all | ||
</code> | </code> |
Revision as of 05:51, 25 May 2020
This is an amazing tool that as of now (May 1 2020) is getting amazingly fast development.
As with most things of this sort the prices will soon appear and it will become a paid product
Install
Configure
Make sure you have a big directory outside of www AND that the directory is web-writeable and mounted at boot.
Tricks
Syncing Files
- This very important in the self hosted world. How do we put and get files outside of the app itself.
- This can easily be done though you need root access.
- Use rsync or similar to sync or copy programs right into the directories.
- Then you need to run an occ (OwnCloudCommand) program with php to rescan for files. Then it will add all the files to the database.
sudo -u www-data php /var/www/html/mir.next.msgvte/occ --verbose --unscanned files:scan --all