diff options
| author | Christian Cleberg <[email protected]> | 2024-05-01 21:45:52 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2024-05-01 21:45:52 -0500 |
| commit | 7d3b5175f2d9d016b06190273fcfeb380a460b3f (patch) | |
| tree | 71139c9021b09704b2d45be3b64d54e2acbae55f /content/blog/2023-06-30-self-hosting-voyager.md | |
| parent | 7c70a351e25106ceff49ff8ee0a38e2a545f62f0 (diff) | |
| download | cleberg.net-7d3b5175f2d9d016b06190273fcfeb380a460b3f.tar.gz cleberg.net-7d3b5175f2d9d016b06190273fcfeb380a460b3f.tar.bz2 cleberg.net-7d3b5175f2d9d016b06190273fcfeb380a460b3f.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; |
