aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2022-03-23-nextcloud-on-ubuntu.md
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2024-05-01 21:45:52 -0500
committerChristian Cleberg <hello@cleberg.net>2024-05-01 21:45:52 -0500
commitdc1261d703ae1e1a14841b030888e3f87ff7c38f (patch)
tree71139c9021b09704b2d45be3b64d54e2acbae55f /content/blog/2022-03-23-nextcloud-on-ubuntu.md
parentba6b552c8256cc2e071c910ef7821c82443f1f82 (diff)
downloadcleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.tar.gz
cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.tar.bz2
cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.zip
prettier formatting and rewrap lines
Diffstat (limited to 'content/blog/2022-03-23-nextcloud-on-ubuntu.md')
-rw-r--r--content/blog/2022-03-23-nextcloud-on-ubuntu.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/blog/2022-03-23-nextcloud-on-ubuntu.md b/content/blog/2022-03-23-nextcloud-on-ubuntu.md
index 93d539f..e772328 100644
--- a/content/blog/2022-03-23-nextcloud-on-ubuntu.md
+++ b/content/blog/2022-03-23-nextcloud-on-ubuntu.md
@@ -34,7 +34,7 @@ sudo mysql -uroot -p
Once you've logged in, you must create a new user so that Nextcloud can manage
the database. You will also create a `nextcloud` database and assign privileges:
-``` sql
+```sql
CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
CREATE DATABASE IF NOT EXISTS nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
GRANT ALL PRIVILEGES ON nextcloud.** TO 'username'@'localhost';
@@ -74,7 +74,7 @@ sudo nano /etc/apache2/sites-available/nextcloud.conf
Once the editor is open, paste the following information in. Then, save and
close the file.
-``` config
+```config
<VirtualHost *:80>
DocumentRoot /var/www/example.com
ServerName example.com
@@ -154,9 +154,9 @@ of Nextcloud, using the `Breeze Dark` theme I installed from the Apps page.
![Nextcloud
Dashboard](https://img.cleberg.net/blog/20220323-installing-nextcloud-on-ubuntu/nextcloud_dashboard.png)
-*Figure 01: Nextcloud Dashboard*
+_Figure 01: Nextcloud Dashboard_
![Nextcloud
Settings](https://img.cleberg.net/blog/20220323-installing-nextcloud-on-ubuntu/nextcloud_settings.png)
-*Figure 02: Nextcloud Security Settings*
+_Figure 02: Nextcloud Security Settings_