hosingh000 3de38762aa initial commit
Change-Id: Ie417df96258c2daa852d14e588de4ad2d54bb819
2017-07-27 09:14:42 -05:00

27 lines
525 B
Plaintext

Listen 8080
<VirtualHost *:8080>
WSGIDaemonProcess rms user=orm group=orm threads=5
WSGIScriptAlias / /opt/app/orm/rms/rms.wsgi
<Location /logs>
Order deny,allow
Deny from all
Allow from localhost
</Location>
<Location /configuration>
Order deny,allow
Deny from all
Allow from localhost
</Location>
<Directory /opt/app/orm/rms/>
WSGIProcessGroup rms
WSGIApplicationGroup %{GLOBAL}
Require all granted
Allow from all
</Directory>
</VirtualHost>