webmcp

view doc/apache.sample.conf @ 57:6a830c1479b0

Removed doubled "end" leading to parsing error
author bsw
date Sun Dec 18 22:14:03 2011 +0100 (2011-12-18)
parents 9fdfb27f8e67
children 075ab292653d
line source
1 # Apache modules cgi_module, env, rewrite and alias must be loaded before
2 # Take a look in your main apache configuration!
4 RewriteEngine on
5 # do not rewrite static URLs
6 RewriteRule ^/webmcp-demo/static/(.*)$ /webmcp-demo/static/$1
7 # base URL
8 RewriteRule ^/webmcp-demo/(\?(.*))?$ /webmcp-demo/webmcp-wrapper.lua?_webmcp_urldepth=0&_webmcp_module=index&_webmcp_view=index&$2
9 # module base URLs
10 RewriteRule ^/webmcp-demo/([^/\?]+)/(\?(.*))?$ /webmcp-demo/webmcp-wrapper.lua?_webmcp_urldepth=1&_webmcp_module=$1&_webmcp_view=index&$3
11 # actions
12 RewriteRule ^/webmcp-demo/([^/\?]+)/([^/\.\?]+)(\?(.*))?$ /webmcp-demo/webmcp-wrapper.lua?_webmcp_urldepth=1&_webmcp_module=$1&_webmcp_action=$2&$4
13 # views without numeric id or string ident
14 RewriteRule ^/webmcp-demo/([^/\?]+)/([^/\.\?]+)\.([^/\?]+)(\?(.*))?$ "/webmcp-demo/webmcp-wrapper.lua?_webmcp_urldepth=1&_webmcp_module=$1&_webmcp_view=$2&_webmcp_suffix=$3&$5
15 # views with numeric id or string ident
16 RewriteRule ^/webmcp-demo/([^/\?]+)/([^/\?]+)/([^/\.\?]+)\.([^/\?]+)(\?(.*))?$ /webmcp-demo/webmcp-wrapper.lua?_webmcp_urldepth=2&_webmcp_module=$1&_webmcp_view=$2&_webmcp_id=$3&_webmcp_suffix=$4&$6
18 # Directly serve static files
19 Alias /webmcp-demo/static /__INSERT_LOCAL_FILE_PATH_TO_DEMO_APPLICATION_HERE__/static
21 # Connect extarnal path to the webmcp cgi interface
22 ScriptAlias /webmcp-demo/ /__INSERT_LOCAL_FILE_PATH_TO_WEBMCP_FRAMEWORK_HERE__/cgi-bin/
24 # Allow CGI execution for the webmcp CGI interface
25 <Directory "/__INSERT_LOCAL_FILE_PATH_TO_WEBMCP_FRAMEWORK_HERE__/cgi-bin">
26 AllowOverride None
27 Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
28 Order allow,deny
29 Allow from all
30 </Directory>
32 # Configure environment for demo application
33 <Location /webmcp-demo>
34 SetEnv WEBMCP_APP_BASEPATH '/__INSERT_LOCAL_FILE_PATH_TO_DEMO_APPLICATION_HERE__'
35 SetEnv WEBMCP_CONFIG_NAME 'demo'
36 </Location>

Impressum / About Us