问题集:
https://segmentfault.com/a/1190000020172342

3.1.1 实例 1

  1. 在浏览器输入106.13.133.106,跳转到tomcat主页
  2. 对外开放访问的端口

    firewall-cmd —add-port=8080/tcp —permanent firewall-cmd –reload

查看已经开放的端口号

firewall-cmd —list-all

image.png

3.1.2 实例 2

使用 nginx 反向代理,根据访问的路径跳转到不同端口的服务中 ,nginx 监听端口为 80。
访问 http://106.13.133.106/tom80/ 直接跳转到 106.13.133.106:8080/tom80
访问 http://106.13.133.106/tom81/ 直接跳转到 106.13.133.106:8081/tom81

结果实例:
image.png
image.png