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-30-self-hosting-voyager.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-30-self-hosting-voyager.md')
-rw-r--r-- | content/blog/2023-06-30-self-hosting-voyager.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/blog/2023-06-30-self-hosting-voyager.md b/content/blog/2023-06-30-self-hosting-voyager.md index 828c0c6..3ec5d83 100644 --- a/content/blog/2023-06-30-self-hosting-voyager.md +++ b/content/blog/2023-06-30-self-hosting-voyager.md @@ -48,7 +48,7 @@ I will be using a `docker-compose.yml` file to run this container, instead of a nano docker-compose.yml ``` -``` conf +```conf version: "2" services: voyager: @@ -70,8 +70,8 @@ The web app will now be available at the following address: ## Reverse Proxy -If you want to visit this app via an external URL or domain name, you'll need -to set up a reverse proxy. The example below uses Nginx as a reverse proxy. +If you want to visit this app via an external URL or domain name, you'll need to +set up a reverse proxy. The example below uses Nginx as a reverse proxy. Simply create the configuration file, paste the contents below, save the file, symlink the file, and restart Nginx. @@ -80,7 +80,7 @@ symlink the file, and restart Nginx. sudo nano /etc/nginx/sites-available/voyager ``` -``` conf +```conf server { if ($host ~ ^[^.]+\.example\.com$) { return 301 https://$host$request_uri; |