Rename runtime -> barrel
This commit is contained in:
parent
bc16eb5893
commit
2b8d3e817d
13 changed files with 7 additions and 7 deletions
4
distillery/resources/compose/barrel/conf/ports.conf
Normal file
4
distillery/resources/compose/barrel/conf/ports.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# This file configures where apache should listen.
|
||||
# Because we are running as a limited user, we want to listen on a high port.
|
||||
# For this we use port 8080
|
||||
Listen 8080
|
||||
22
distillery/resources/compose/barrel/conf/wisski.conf
Normal file
22
distillery/resources/compose/barrel/conf/wisski.conf
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<VirtualHost *:8080>
|
||||
# the document root -- /var/www/data/project/web
|
||||
DocumentRoot /var/www/data/project/web
|
||||
|
||||
<Directory /var/www/data/project/web>
|
||||
# add types for .owl and .rdf
|
||||
AddType application/rdf+xml .owl
|
||||
AddType application/rdf+xml .rdf
|
||||
|
||||
# Rewrite the 'ontology' directory
|
||||
ReWriteRule ^(ontology/[^/]+/).+ $1 [R=303,L]
|
||||
ReWriteRule ^(ontology/[^/]+)/$ sites/default/files/$1.owl [L]
|
||||
|
||||
# Allow overrides of symlinks
|
||||
Options Indexes FollowSymLinks
|
||||
AllowOverride All
|
||||
Require all granted
|
||||
</Directory>
|
||||
|
||||
ErrorLog /dev/stderr
|
||||
CustomLog /dev/stdout combined
|
||||
</VirtualHost>
|
||||
Loading…
Add table
Add a link
Reference in a new issue