1. server
    2. {
    3. listen 80;
    4. listen 8081; # 只需要配置多个listen即可
    5. server_name xxx.xxxxx.xx;
    6. location = /favicon.ico { access_log off; log_not_found off; }
    7. location = /robots.txt { access_log off; log_not_found off; }
    8. access_log off;
    9. error_log /dev/null crit;
    10. }

    注意上面配置好后可能由于linux系统禁止了指定端口访问,导致配置的端口无法访问,此时只需开启该端口权限即可;

    若使用阿里云ecs实例,需要到该实例安全组修改配置规则。