+ Setting up Grafana service (metrics.lablad)

+ Reverse proxy entry for nginx routing

This is the first step for establishing a goal for the server's logging stack
This commit is contained in:
2022-04-14 20:43:10 -07:00
parent 0f392dec09
commit 30ee715264
5 changed files with 40 additions and 5 deletions

View File

@@ -1,10 +1,6 @@
# this file pertains to the gitea service which is served under the fqdn:
# git.lablad
# the default port is listed under /vars/main.yml as 3000 as gitea_pub_port
server {
server_name files.lablad;
location / {
proxy_pass http://127.0.0.1:8080;
}
}
}

View File

@@ -0,0 +1,10 @@
# metrics.lablad
server {
server_name metrics.lablad;
proxy_set_header Host $http_host;
location / {
proxy_pass http://127.0.0.1:6000;
}
}