https://github.com/TylerBackman/chemminetools
Raw File
Tip revision: 1896c2dd7362f44193528aef028390543a125921 authored by Austin Leong on 05 April 2021, 18:10:10 UTC
Drug Target Search Graph development preview (expect to revert)
Tip revision: 1896c2d
apacheconfig
Alias /static/ /srv/chemminetools/static_production/

WSGIDaemonProcess chemminetools python-home=/srv/venvs/chemminetools
WSGIProcessGroup chemminetools
WSGIApplicationGroup %{GLOBAL}

WSGIScriptAlias / /srv/chemminetools/chemminetools/wsgi.py

<Location />
    Order Allow,Deny
    Allow from all
</Location>

<Directory "/srv/chemminetools/chemminetools">
    <Files "wsgi.py">
        Require all granted
    </Files>
</Directory>

<Directory "/srv/chemminetools/static_production">
    Require all granted
</Directory>
back to top