Skip to content
Snippets Groups Projects
Select Git revision
  • b40fbbd283708f3a17e442b20e503a945e461b4d
  • master default protected
2 results

nginx-config-bbb

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    nginx-config-bbb 713 B
    location /sr/ {
         proxy_pass         http://127.0.0.1:8080/;
         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection "Upgrade";
         proxy_set_header Host $host;
         proxy_buffering off;
    
      }
    
      location /msg_broker/ {
         proxy_pass         http://127.0.0.1:3022/;
         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection "Upgrade";
         proxy_set_header Host $host;
      }
    
      location /relevant-terms/ {
         proxy_pass         http://127.0.0.1:6060/;
         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection "Upgrade";
         proxy_set_header Host $host;
      }