diff options
author | Michael Elkins <melkins@tislabs.com> | 2013-03-14 22:25:55 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2013-03-14 22:25:55 +0000 |
commit | fb619a82b4b8aff079683544135c61c02512d503 (patch) | |
tree | a0d19fe62cb8e24d25f2c2f269fc79dc5ab9a764 | |
parent | 860c999ed09bdffbdb9c3e07bfa4e2de376f7b44 (diff) |
remove trailing slash from the URL alias for /rcynic. closes #465
svn path=/trunk/; revision=5151
-rw-r--r-- | rpkid/portal-gui/apache.conf.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rpkid/portal-gui/apache.conf.in b/rpkid/portal-gui/apache.conf.in index 082e49df..01bec12e 100644 --- a/rpkid/portal-gui/apache.conf.in +++ b/rpkid/portal-gui/apache.conf.in @@ -32,7 +32,9 @@ Alias /site_media/ @INSTDIR@/media/ Order deny,allow Allow from all </Directory> -Alias /rcynic/ @RCYNIC_HTML_DIR@/ +# leave the trailing slash off the URL, otherwise /rcynic is swallowed by the +# WSGIScriptAlias +Alias /rcynic @RCYNIC_HTML_DIR@/ # redirect to the dashboard when someone hits the bare vhost |