aboutsummaryrefslogtreecommitdiff
path: root/content/blog/2025-01-23-self-hosting-tandoor.org
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-01-27 22:10:17 -0600
committerChristian Cleberg <hello@cleberg.net>2025-01-27 22:10:17 -0600
commit1120a5e835e72a3588ef3a804384598996b3c47f (patch)
tree2e3ab145176da93e484c9df958e0eb020b04a1c9 /content/blog/2025-01-23-self-hosting-tandoor.org
parentea6abcc7b746a43a03b995714397a23d20ff195f (diff)
downloadcleberg.net-1120a5e835e72a3588ef3a804384598996b3c47f.tar.gz
cleberg.net-1120a5e835e72a3588ef3a804384598996b3c47f.tar.bz2
cleberg.net-1120a5e835e72a3588ef3a804384598996b3c47f.zip
fix errors in latest post
Diffstat (limited to 'content/blog/2025-01-23-self-hosting-tandoor.org')
-rw-r--r--content/blog/2025-01-23-self-hosting-tandoor.org24
1 files changed, 13 insertions, 11 deletions
diff --git a/content/blog/2025-01-23-self-hosting-tandoor.org b/content/blog/2025-01-23-self-hosting-tandoor.org
index e114d0d..985c3ca 100644
--- a/content/blog/2025-01-23-self-hosting-tandoor.org
+++ b/content/blog/2025-01-23-self-hosting-tandoor.org
@@ -36,13 +36,13 @@ https://raw.githubusercontent.com/vabene1111/recipes/develop/docs/install/docker
#+end_src
Within these files, customize as needed.
-1. =.env=
- a. Add a =SECRET_KEY=
- b. Define the =ALLOWED_HOSTS=
- c. Set the =POSTGRES_PASSWORD=
-2. =docker-compose.yml=
- a. Update the =ports= since Nginx on my host is already using port 80 (e.g.
- =8087:80=)
+- =.env=
+ - Add a =SECRET_KEY=
+ - Define the =ALLOWED_HOSTS=
+ - Set the =POSTGRES_PASSWORD=
+- =docker-compose.yml=
+ - Update the =ports= since Nginx on my host is already using port 80 (e.g.
+ =8087:80=)
Once you've updated and saved the files, you can launch the container.
@@ -52,16 +52,18 @@ sudo docker compose up -d
The application is now available at =localhost:8087= or =ip_address:8087= if
accessing via a different machine. If accessing via a different machine,
-remember to allow port 8087 through any existing firewalls.
+remember to allow port =8087= through any existing firewalls.
** Nginx Reverse Proxy
Now that Tandoor is available locally, let's connect it to the Nginx web server
running on the host machine.
-> Note: I use Nginx configuration files within the =conf.d= directory, but you
-> may need to use the =sites-available= directory, depending on your
-> installation of Nginx.
+#+begin_quote
+Note: I use Nginx configuration files within the =conf.d= directory, but you may
+need to use the =sites-available= directory, depending on your installation of
+Nginx.
+#+end_quote
#+begin_src shell
cd /etc/nginx/conf.d/