server
{
listen 80;
listen 8081; # 只需要配置多个listen即可
server_name xxx.xxxxx.xx;
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
access_log off;
error_log /dev/null crit;
}
注意上面配置好后可能由于linux系统禁止了指定端口访问,导致配置的端口无法访问,此时只需开启该端口权限即可;
若使用阿里云ecs实例,需要到该实例安全组修改配置规则。