网络研讨会支持设置嘉宾的用户入会方式有哪些?
如:电话入会用户、rooms入会用户、MRA入会用户、会议系统入会用户等各种入会方式
谢邀
可以考虑nginx做域名的反向代理:
#配置http反向代理域名1
server {
listen 80;
server_name www.admin.com; #申请的域名
location / {
proxy_pass http://tomcat1/path; #区分域名映射的tomcat
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
但是这样做可能对https的支持和cookies的登录会有点问题。
最好是原服务运行在127.0.0.1:port 上,这样可以直接做端口代理,既能完美支持https也不会丢失cookies