Created
January 20, 2019 13:08
-
-
Save bmsleight/96bdb1f5fc1be2899c8d59df260e44aa 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
<VirtualHost *:80> | |
ServerName paperless.lan | |
Alias /static/ /home/paperless/paperless/static/ | |
<Directory /home/paperless/paperless/static> | |
Require all granted | |
</Directory> | |
WSGIScriptAlias / /home/paperless/paperless/src/paperless/wsgi.py | |
WSGIDaemonProcess paperless.lan user=paperless group=paperless threads=5 | |
WSGIProcessGroup paperless.lan | |
<Directory /home/paperless/paperless/src/paperless> | |
<Files wsgi.py> | |
Require all granted | |
</Files> | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment