Skip to content

Commit

Permalink
Merge pull request linuxserver#661 from flammable/uptime-kuma-status-…
Browse files Browse the repository at this point in the history
…pages

Adds section for Uptime Kuma status pages
  • Loading branch information
nemchik authored May 25, 2024
2 parents 0947948 + 9506810 commit d8253f3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion uptime-kuma.subdomain.conf.sample
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 2023/05/31
## Version 2024/03/26
# make sure that your uptime-kuma container is named uptime-kuma
# make sure that your dns has a cname set for uptime-kuma

Expand Down Expand Up @@ -43,4 +43,14 @@ server {
proxy_pass $upstream_proto://$upstream_app:$upstream_port;

}

location ~ /(status|assets|icon.svg) {
include /config/nginx/proxy.conf;
include /config/nginx/resolver.conf;
set $upstream_app uptime-kuma;
set $upstream_port 3001;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;

}
}

0 comments on commit d8253f3

Please sign in to comment.