Last active
February 15, 2017 06:35
-
-
Save sijpkes/7416619083a7756b3aeaa36e76290db2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RequestHeader set X-Forwarded-Proto "https" | |
WSGIScriptAlias /dalite-ng .../dalite-ng/dalite/wsgi.py | |
WSGIPythonPath .../dalite-ng | |
WSGISocketPrefix run/wsgi | |
Alias /dalite-ng/static .../dalite-ng/static | |
ServerName your.server.edu.au | |
<Directory /.../dalite-ng/static> # replace with real path | |
Allow from all | |
</Directory> | |
<Directory /.../dalite-ng/dalite> | |
WSGIPassAuthorization On | |
<Files wsgi.py> | |
Allow from all | |
</Files> | |
</Directory> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment