From ac2c62f9e67b7e68de7a1fb91cddc773865b47bc Mon Sep 17 00:00:00 2001 From: Gerdriaan Mulder Date: Sat, 28 Dec 2019 18:47:20 +0100 Subject: [PATCH] README updated with -root_url and sample systemd unit file --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 086be37..d7935e8 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ are the exceptions: ## Database -We will be using [`go.etcd.io/bbolt`]. This file should be the *only* file +We use [`go.etcd.io/bbolt`]. This file should be the *only* file apart from our monolithic binary. All settings and keys should go in here. Any read-only data resides in the binary file (possibly compressed). @@ -114,8 +114,25 @@ server { proxy_pass http://127.0.0.1:8000; proxy_set_header Host rushlink.local; proxy_set_header X-Forwarded-For $remote_addr; + proxy_set_header X-Forwarded-Proto $scheme; proxy_http_version 1.1; } } ``` +`rushlink` automatically detects whether `http` or `https` is used when +`X-Forwarded-Proto` is correctly set. Otherwise, pass `-root_url +https://rushlink.local` to the binary (e.g. in the `systemd` unit file). + +## Sample `systemd` unit file + +``` +[Install] +WantedBy=nginx.service + +[Service] +Type=simple +User=rushlink +Group=nogroup +ExecStart=/var/lib/rushlink/rushlink -database /var/lib/rushlink/db -file-store /var/lib/rushlink/filestore -root_url https://rushlink.local +```