Skip to content

Commit

Permalink
fix rabbit
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Caskey authored and Paul Caskey committed Oct 30, 2020
1 parent b4a8a91 commit d4efae9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
1 change: 1 addition & 0 deletions Workbench/mq/container_files/etc-rabbitmq/rabbitmq.conf
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Allow guest access from anywhere (change this in production!)
loopback_users = none

1 change: 1 addition & 0 deletions Workbench/webproxy/container_files/httpd/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ <h3>Welcome to the InCommon TAP Workbench!</h3>
<li><a href="https://localhost/grouperSSO/Shibboleth.sso/Status" target="TAP-WB-SP">Shibboleth SP</a></li>
<li><a href="https://localhost/grouper" target="TAP-WB-GROUPER">Grouper</a></li>
<li><a href="https://localhost/midpoint" target="TAP-WB-MIDPOINT">midPoint</a></li>
<li><a href="https://localhost/rabbit" target="TAP-WB-RABBIT">Rabbit MQ</a></li>
<li>COmanage (coming soon)</li>
</ul>

13 changes: 11 additions & 2 deletions Workbench/webproxy/container_files/httpd/proxy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
SSLProxyCheckPeerExpire off
ProxyPreserveHost On
AllowEncodedSlashes On

ProxyPass /midpoint https://midpoint-server/midpoint
ProxyPassReverse /midpoint https://midpoint-server/midpoint
Expand All @@ -20,8 +21,16 @@ ProxyPassReverse /grouper-ws https://grouper-ws/grouper-ws
ProxyPass /idp https://idp/idp
ProxyPassReverse /idp https://idp/idp

ProxyPass /rabbit https://mq:15672/
ProxyPassReverse /rabbit https://mq:15672/
ProxyPass /rabbit http://mq:15672/ nocanon
ProxyPassReverse /rabbit http://mq:15672/
ProxyPass /js http://mq:15672/js
ProxyPassReverse /js http://mq:15672/js
ProxyPass /css http://mq:15672/css
ProxyPassReverse /css http://mq:15672/css
ProxyPass /img http://mq:15672/img
ProxyPassReverse /img http://mq:15672/img
ProxyPass /api http://mq:15672/api
ProxyPassReverse /api http://mq:15672/api

ProxyPass /comanage https://comanage/
ProxyPassReverse /comanage https://comanage/
Expand Down

0 comments on commit d4efae9

Please sign in to comment.