NextCloud on LAMP on Stretch: Difference between revisions
No edit summary |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 11: | Line 11: | ||
* PHP7 '''only pareses''' *.php files ! | * PHP7 '''only pareses''' *.php files ! | ||
===== Enable http/2 ===== | |||
# a2enmod http2 | |||
# add "Protocols h2 h2c http/1.1" to /etc/apache2/apache2.conf | |||
==== NextCloud ==== | ==== NextCloud ==== | ||
Line 22: | Line 27: | ||
* [[Install NextCloud client on Windows 10]] | * [[Install NextCloud client on Windows 10]] | ||
* https://linuxconfig.org/generate-ssl-certificates-with-letsencrypt-debian-linux | * https://linuxconfig.org/generate-ssl-certificates-with-letsencrypt-debian-linux | ||
* [http://guichaz.free.fr/iotop/ | * [http://guichaz.free.fr/iotop/ iotop] | ||
* [[Using "screen -S sessionName .script" in SSH|screen]] | * [[Using "screen -S sessionName .script" in SSH|screen]] | ||
* [[PiVPN]] | * [[PiVPN]] | ||
* https://certbot.eff.org/ | |||
[[Category:Debian]] | [[Category:Debian]] | ||
[[Category:NextCloud]] |
Latest revision as of 16:29, 6 May 2018
A few findings:
LAMP
- "apt install mariadb-client mariadb-server" did not ask for root password. It just installed with blank password... but i can easily be fixed using the "mysql_secure_installation" script that is included in the install. Ref: https://mariadb.com/kb/en/mariadb/mysql_secure_installation/
- Create the nextcloud database not the "newdb" included in the LAMP guide.
- PHP7 only pareses *.php files !
Enable http/2
- a2enmod http2
- add "Protocols h2 h2c http/1.1" to /etc/apache2/apache2.conf
NextCloud
- Small typo: "php-7.0-cli" should be "php7.0-cli" in the first apt install command.