Parent Directory
|
Revision Log
allow to set aliases for wsgi powered web application ( should be refactored, IMHO )
1 | misc | 812 | <VirtualHost *:80> |
2 | ServerName <%= name %> | ||
3 | # Serve static content directly | ||
4 | DocumentRoot /dev/null | ||
5 | |||
6 | WSGIScriptAlias / <%= wsgi_path %> | ||
7 | misc | 890 | |
8 | <%- aliases.each_pair do |key,value| -%> | ||
9 | Alias <%= key %> <%= value %> | ||
10 | <%- end -%> | ||
11 | misc | 812 | <Location /> |
12 | Allow from all | ||
13 | </Location> | ||
14 | </VirtualHost> | ||
15 |
ViewVC Help | |
Powered by ViewVC 1.1.30 |