我有一个带有管理插件的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/;
}
。
我找到了一些答案,但是无法决定要添加什么以及如何更改指令。