先说Sorry了,我翻遍所有关于内外网的帖子,照着做了无数次,怎么都弄不好
阿里云服,内外网
1、StartMachineConfig@s.xlsx 里把内外网字段都填的阿里云内网IP
2、StartSceneConfig@s.xlsx里面修改了一下routermanager和router的端口(10300-10305改为10305-10309)应该没啥毛病吧?

然后做了nginx的转发配置,不知道是不是转发配置不对:
http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request"'
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  /var/log/nginx/access.log  main;
    sendfile        on;
    #tcp_nopush     on;
    keepalive_timeout  65;
    #gzip  on;
    include /etc/nginx/conf.d/*.conf;	
	server{
		listen 10305;
		server_name 【外网IP】;
		location /{
			proxy_pass http://【内网IP】:10305;
		}		
	}
	server{
		listen 10306;
		server_name 【外网IP】;
		location /{
			proxy_pass http://【内网IP】:10306;
		}	
	}
	server{
		listen 10307;
		server_name 【外网IP】;
		location /{
			proxy_pass http://【内网IP】:10307;
		}	
	}
	server{
		listen 10308;
		server_name 【外网IP】;
		location /{
			proxy_pass http://【内网IP】:10308;
		}	
	}
	server{
		listen 10309;
		server_name 【外网IP】;
		location /{
			proxy_pass http://【内网IP】:10309;
		}	
	}	
}
然后在阿里云安全组里开放了这些端口,包括UDP的

无论是用浏览器访问,还是游戏内访问,都不行
浏览器模拟:

游戏运行:

2个小时折腾下来,有点崩溃了。求大佬指导!是不是还漏了什么步骤没设置好?