MyGit

0.9.2

nginx-proxy/nginx-proxy

版本发布时间: 2021-08-11 23:58:05

nginx-proxy/nginx-proxy最新发布版本:1.6.0(2024-06-06 20:27:37)

This is a patch release.

Bugs fixed:

Changes since 0.9.1:

Various CI and docs updates.

Note:

If you relied on those upstream names in your custom configuration(s), please be aware that you'll have to update them if you use version 0.9.1 or higher.

0.9.0 and prior:

# example.com
upstream example.com {
  server 172.16.0.2:80;
}

server {
  server_name example.com;
  #[…]
  location / {
    proxy_pass http://example.com;
  }
}

0.9.1:

# example.com
upstream example.com-upstream {
  server 172.16.0.2:80;
}

server {
  server_name example.com;
  #[…]
  location / {
    proxy_pass http://example.com-upstream;
  }
}

0.9.2+:

# example.com
upstream 0caaf24ab1a0c33440c06afe99df986365b0781f {
  server 172.16.0.2:80;
}

server {
  server_name example.com;
  #[…]
  location / {
    proxy_pass http://0caaf24ab1a0c33440c06afe99df986365b0781f;
  }
}

相关地址:原始地址 下载(tar) 下载(zip)

查看:2021-08-11发行的版本