nginx - config

Posted xiaobin-hlj80

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx - config相关的知识,希望对你有一定的参考价值。

 

1. config

Default load balancing configuration

http {
    upstream myapp1 {
        server srv1.example.com;
        server srv2.example.com;
        server srv3.example.com;
    }

    server {
        listen 80;

        location / {
            proxy_pass http://myapp1;
        }
    }
}

 

Reference:

1. nginx - load balancing

以上是关于nginx - config的主要内容,如果未能解决你的问题,请参考以下文章

[异常解决] Keil安装好nRF51822开发环境,运行DEMO报错:Error:“GPIOTE_CONFIG_NUM_OF_LOW_POWER_ENVENTS” is undefined(代码片段

nginx.conf 忽略了 nginx-ingress 配置映射片段

将 nginx rtmp 片段发送到 WebRTC

如何在 Django Summernote 中显示编程片段的代码块?

text 有用的nginx命令和片段

Nginx系列:优雅地使用可视化工具配置 Nginx config