Co-authored-by: xiuting.xu <xiutingxt.xu@gmail.com> Reviewed-on: #21 Reviewed-by: huhy <husteryezi@163.com> Reviewed-by: sundapeng <sundp@mail.zgclab.edu.cn> Reviewed-by: yuyr <yuyr@zgclab.edu.cn>
20 lines
290 B
Plaintext
20 lines
290 B
Plaintext
# Elasticsearch
|
|
server {
|
|
listen 80;
|
|
server_name es.log.argus.com;
|
|
|
|
location / {
|
|
proxy_pass http://es.log.argus.com;
|
|
}
|
|
}
|
|
|
|
# Kibana
|
|
server {
|
|
listen 80;
|
|
server_name kibana.log.argus.com;
|
|
|
|
location / {
|
|
proxy_pass http://kibana.log.argus.com;
|
|
}
|
|
}
|