Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: added static page to apache namespace #227

Open
wants to merge 1 commit into
base: feat-openstack
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions roles/ood_user_reg_cloud/templates/user-reg_conf_shib.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@ ProxyPassReverse /socket.io/ http://127.0.0.1:8000/socket.io/
ProxyPass /register http://127.0.0.1:8000/
ProxyPassReverse /register http://127.0.0.1:8000/

ProxyPass /register http://127.0.0.1:8000/defaultpage
ProxyPassReverse /register http://127.0.0.1:8000/defaultpage

ProxyPass /static http://127.0.0.1:8000/static
ProxyPassReverse /static http://127.0.0.1:8000/static

<Location "/defaultpage">
AuthType shibboleth
ShibRequestSetting requireSession 1
Require valid-user
</Location>

<Location /register>
AuthType shibboleth
ShibRequestSetting requireSession 1
Expand Down