Firebird/FAQs: Difference between revisions
From stonehomewiki
Jump to navigationJump to search
Stonezhong (talk | contribs) (→Misc) |
Stonezhong (talk | contribs) (→Misc) |
||
| Line 5: | Line 5: | ||
rabbitmq has a management Web Console. If you put it behind a nginx proxy, you can refer to notes her: [https://www.rabbitmq.com/management.html#http-api-proxy Management Plugin] | rabbitmq has a management Web Console. If you put it behind a nginx proxy, you can refer to notes her: [https://www.rabbitmq.com/management.html#http-api-proxy Management Plugin] | ||
Here is my example, my rabbitmq Web UI is at <nowiki>http://10.2.10.152:80/</nowiki>, and I want to mount it under /streaming/rabbitmq, so my config is | Here is my example, my backend rabbitmq Web UI is at <code><nowiki>http://10.2.10.152:80/</nowiki></code>, it is actually a k8s service, and I want to mount it under /streaming/rabbitmq, so my config is | ||
I have another HTTPS enabled load balancer in front of this, so this nginx is not directly exposed to client. | I have another HTTPS enabled load balancer in front of this, so this nginx is not directly exposed to client. | ||
<pre><nowiki> | |||
(oci-cli) [opc@beta-k8s-admin ~]$ k get services | |||
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE | |||
rabbitmq LoadBalancer 10.96.103.207 10.2.10.152 5672:30861/TCP,80:31434/TCP 3d | |||
</nowiki></pre> | |||
<pre><nowiki> | <pre><nowiki> | ||
server { | server { | ||