Co-authored-by: xiuting.xu <xiutingxt.xu@gmail.com> Reviewed-on: #28 Reviewed-by: yuyr <yuyr@zgclab.edu.cn> Reviewed-by: huhy <husteryezi@163.com> Reviewed-by: sundapeng <sundp@mail.zgclab.edu.cn>
10 lines
200 B
Plaintext
10 lines
200 B
Plaintext
server {
|
|
listen 80;
|
|
server_name alertmanager.alert.argus.com;
|
|
|
|
location / {
|
|
set $alert_backend http://alertmanager.alert.argus.com:9093;
|
|
proxy_pass $alert_backend;
|
|
}
|
|
}
|