diff options
author | Christian Cleberg <hello@cleberg.net> | 2024-05-01 21:45:52 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2024-05-01 21:45:52 -0500 |
commit | dc1261d703ae1e1a14841b030888e3f87ff7c38f (patch) | |
tree | 71139c9021b09704b2d45be3b64d54e2acbae55f /content/blog/2023-06-08-self-hosting-baikal.md | |
parent | ba6b552c8256cc2e071c910ef7821c82443f1f82 (diff) | |
download | cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.tar.gz cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.tar.bz2 cleberg.net-dc1261d703ae1e1a14841b030888e3f87ff7c38f.zip |
prettier formatting and rewrap lines
Diffstat (limited to 'content/blog/2023-06-08-self-hosting-baikal.md')
-rw-r--r-- | content/blog/2023-06-08-self-hosting-baikal.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/blog/2023-06-08-self-hosting-baikal.md b/content/blog/2023-06-08-self-hosting-baikal.md index b56865a..c53da2b 100644 --- a/content/blog/2023-06-08-self-hosting-baikal.md +++ b/content/blog/2023-06-08-self-hosting-baikal.md @@ -28,14 +28,14 @@ the `ports` section to use any port on your server to pass through to port 80 in the container. You can also edit the `volumes` section to use docker volumes instead of local folders. -``` conf +```conf version: "2" services: baikal: image: ckulka/baikal:nginx restart: always ports: - - "8567:80" + - "8567:80" volumes: - ./config:/var/www/baikal/config - ./data:/var/www/baikal/Specific @@ -93,7 +93,7 @@ nano dav Within this file, paste in the configuration from below and change `dav.example.com` to match the URL you'll be using. -``` conf +```conf server { if ($host ~ ^[^.]+\.example\.com$) { return 301 https://$host$request_uri; |