Skip to content

Instantly share code, notes, and snippets.

@mabroor
Forked from jacobian/Procfile
Created May 25, 2012 03:19
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mabroor/2785558 to your computer and use it in GitHub Desktop.
Hosting Private password protected Sphinx Docs
import barrel.cooper
import os
import static
app = static.Cling(os.path.join(os.path.dirname(__file__), '_build/html'))
app = barrel.cooper.basicauth(users=[('jacob', 'hunter2')])(app)
web: gunicorn -w4 -b0.0.0.0:$PORT app:app
static==0.4
barrel==0.1.3
gunicorn==0.14.3
@brianjking
Copy link

@mabroor -- Any idea if this still works? I'm getting a 404 on my docs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment