Nginx反向代理背后的RabbitMQ管理

时间:2020-05-25 09:54:58

标签: nginx rabbitmq

我有一个带有管理插件的Rabbitmq服务。
我尝试像这样配置nginx反向代理:

public class ProfileInfo {

String userName, profilePhotoUrl, phoneNumber, userId;

public ProfileInfo() {}

public ProfileInfo(String userName, String profilePhotoUrl, String phoneNumber, String userId) {
    this.userName = userName;
    this.profilePhotoUrl = profilePhotoUrl;
    this.phoneNumber = phoneNumber;
    this.userId = userId;
}

public ProfileInfo(String userName, String phoneNumber) {
    this.userName = userName;
    this.phoneNumber = phoneNumber;
}


public String getUserId() {
    return userId;
}

public String getPhoneNumber() {
    return phoneNumber;
}

public String getUserName() {
    return userName;
}

public String getProfilePhotoUrl() {
    return profilePhotoUrl;
}
}

我可以查看和登录管理页面,但是当我尝试查看队列时,我得到location /_/rabbitmq/ { proxy_pass http://localhost:15672/; }

我找到了一些答案,但是无法决定要添加什么以及如何更改指令。

RabbitMQ Management Over HTTPS and Nginx

0 个答案:

没有答案