summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlolcat <will@lolcat.ca>2024-02-29 23:43:52 -0500
committerlolcat <will@lolcat.ca>2024-02-29 23:43:52 -0500
commitc0cc73e9b37bc033dde4932dd3e0b05922062a1d (patch)
tree3d9a9ced9d16734ba044788c34d1012b96107812
parenta20d4de1e4d1a00c0d152136e5d7cd81481ace7b (diff)
docs
-rw-r--r--docs/apache2.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/apache2.md b/docs/apache2.md
index 28a066e..e746a7e 100644
--- a/docs/apache2.md
+++ b/docs/apache2.md
@@ -184,6 +184,13 @@ Head over to `/etc/apache2/conf-enabled/charset.conf` and uncomment `AddDefaultC
## other-vhost-access-log.conf
Since none of our configuration files contains any `CustomLog` directives, all we need to do to disable logging entirely is comment out the `CustomLog` directive located in `/etc/apache2/conf-enabled/other-vhost-access-log.conf`. Only error logs will remain if you configured them.
+## Symlink everything
+Now comes the most important part of the setup. Run
+```sh
+ln -s /etc/apache2/sites-available/default-ssl.conf /etc/apache2/sites-enabled/default-ssl.conf
+```
+Otherwise apache2 will ignore our SSL configuration. Handy, huh?
+
# Setup SSL
Great, now we've configured the webserver, but we still don't have our security certificate. Let's generate one!