aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/wikis/templates/wiki_vhost.conf
blob: 4e1355bce09fb063eff5f87993e37461adeb52c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Directory <%= @wikis_root %>>
  Options +FollowSymLinks
</Directory>

RewriteEngine On
RewriteRule ^/?$ /en/ [R]

Alias /robots.txt <%= @wikis_root %>/robots.txt

<%- for lang in wiki_languages -%>

<Directory <%= @wikis_root %>/<%= lang %>/images>
  SetHandler default-handler
</Directory>

Alias /<%= lang %> <%= @wikis_root %>/<%= lang %>/index.php
Alias /mw-<%= lang %> <%= @wikis_root %>/<%= lang %>

<%- end -%>