27 lines
525 B
Plaintext
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>
|