Owncloud
Owncloud
sudo mysql
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password by 'abc123*';
quit
sudo mysql_secure_installation
wget https://download.owncloud.com/server/stable/owncloud-10.12.1.zip
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /var/www/html/owncloud
ServerName example.com
<Directory /var/www/html/owncloud>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/example.com_error.log
CustomLog ${APACHE_LOG_DIR}/example.com_access.log combined
</VirtualHost>
sudo a2enmod rewrite mime unique_id
sudo systemctl restart apache2