3de38762aa
Change-Id: Ie417df96258c2daa852d14e588de4ad2d54bb819
27 lines
540 B
Plaintext
27 lines
540 B
Plaintext
Listen 8084
|
|
|
|
<VirtualHost *:8084>
|
|
|
|
WSGIDaemonProcess ims user=orm group=orm threads=5
|
|
WSGIScriptAlias / /opt/app/orm/ims/ims.wsgi
|
|
|
|
<Location /v1/orm/logs>
|
|
Order deny,allow
|
|
Deny from all
|
|
Allow from localhost
|
|
</Location>
|
|
|
|
<Location /v1/orm/configuration>
|
|
Order deny,allow
|
|
Deny from all
|
|
Allow from localhost
|
|
</Location>
|
|
|
|
<Directory /opt/app/orm/ims/>
|
|
WSGIProcessGroup ims
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
Require all granted
|
|
Allow from all
|
|
</Directory>
|
|
</VirtualHost>
|