aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 8e5cc6b..cdae7f2 100644
--- a/README.md
+++ b/README.md
@@ -12,6 +12,7 @@ This is my proposed solution to my pastebin problem.
* "Reply to" pastes to make parent/children relationships
* UUIDs instead of sequential integer ID numbers
* Private pastes (accessible to admin, and to users with the whole link)
+* Reverse-proxy autoconfiguration by visiting /set
# Using stackbin
## Installing
@@ -37,6 +38,14 @@ Run the server in a full wsgi environment for the cleanup timer to operate.
./stackbin.bin
+If you use stackbin behind a reverse-proxy such as nginx with example file `stackbin.conf.nginx`, then you can have it autodetect the correct top-level path by visiting path:
+
+ /set
+
+This means that if your app is behind `http://example.com/stackbin/` then you would just visit once page:
+
+ http://example.com/stackbin/set
+
# Improvements
I still need to work on these tasks:
@@ -46,7 +55,6 @@ I still need to work on these tasks:
## Release
-* Document centos7 dependencies
* Deploy to prod
# Alternatives
bgstack15