Skip to content

Commit a3ba31a

Browse files
committed
Add/adjust api and metric endpoints
1 parent 1228f6e commit a3ba31a

10 files changed

+167
-32
lines changed

authelia.subdomain.conf.sample

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your authelia container is named authelia
33
# make sure that your dns has a cname set for authelia
44
# the default authelia-server and authelia-location confs included with swag rely on
@@ -26,4 +26,28 @@ server {
2626
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
2727

2828
}
29+
30+
location ~ (/authelia)?/api {
31+
include /config/nginx/proxy.conf;
32+
include /config/nginx/resolver.conf;
33+
set $upstream_app authelia;
34+
set $upstream_port 9091;
35+
set $upstream_proto http;
36+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
37+
38+
}
39+
40+
location ~ (/authelia)?/metrics {
41+
# enable the next two lines for http auth
42+
#auth_basic "Restricted";
43+
#auth_basic_user_file /config/nginx/.htpasswd;
44+
45+
include /config/nginx/proxy.conf;
46+
include /config/nginx/resolver.conf;
47+
set $upstream_app authelia;
48+
set $upstream_port 9959;
49+
set $upstream_proto http;
50+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
51+
52+
}
2953
}

authentik.subdomain.conf.sample

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your authentik container is named authentik-server
33
# make sure that your dns has a cname set for authentik
44

@@ -22,4 +22,28 @@ server {
2222
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
2323

2424
}
25+
26+
location ~ (/authentik)?/api {
27+
include /config/nginx/proxy.conf;
28+
include /config/nginx/resolver.conf;
29+
set $upstream_app authentik-server;
30+
set $upstream_port 9000;
31+
set $upstream_proto http;
32+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
33+
34+
}
35+
36+
location ~ (/authentik)?/metrics {
37+
# enable the next two lines for http auth
38+
#auth_basic "Restricted";
39+
#auth_basic_user_file /config/nginx/.htpasswd;
40+
41+
include /config/nginx/proxy.conf;
42+
include /config/nginx/resolver.conf;
43+
set $upstream_app authentik-server;
44+
set $upstream_port 9300;
45+
set $upstream_proto http;
46+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
47+
48+
}
2549
}

flexget.subfolder.conf.sample

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your flexget container is named flexget
33
# make sure that flexget is set to work with the base url /flexget/
44
# make sure to set 'base_url: /flexget' under your flexget's config.yml web_server block
@@ -21,12 +21,6 @@ location ^~ /flexget/ {
2121
# enable for Authentik (requires authentik-server.conf in the server block)
2222
#include /config/nginx/authentik-location.conf;
2323

24-
# enable for Authelia (requires authelia-server.conf in the server block)
25-
#include /config/nginx/authelia-location.conf;
26-
27-
# enable for Authentik (requires authentik-server.conf in the server block)
28-
#include /config/nginx/authentik-location.conf;
29-
3024
include /config/nginx/proxy.conf;
3125
include /config/nginx/resolver.conf;
3226
set $upstream_app flexget;

grafana.subdomain.conf.sample

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your grafana container is named grafana
33
# make sure that your dns has a cname set for grafana
44

@@ -46,4 +46,28 @@ server {
4646
#proxy_set_header Authorization "";
4747

4848
}
49+
50+
location ~ (/grafana)?/api {
51+
include /config/nginx/proxy.conf;
52+
include /config/nginx/resolver.conf;
53+
set $upstream_app grafana;
54+
set $upstream_port 3000;
55+
set $upstream_proto http;
56+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
57+
58+
}
59+
60+
location ~ (/grafana)?/metrics {
61+
# enable the next two lines for http auth
62+
#auth_basic "Restricted";
63+
#auth_basic_user_file /config/nginx/.htpasswd;
64+
65+
include /config/nginx/proxy.conf;
66+
include /config/nginx/resolver.conf;
67+
set $upstream_app grafana;
68+
set $upstream_port 3000;
69+
set $upstream_proto http;
70+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
71+
72+
}
4973
}

grafana.subfolder.conf.sample

+35-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your grafana container is named grafana
33
# make sure that grafana is set to work with the base url /grafana/
44
# grafana requires environment variables set thus:
@@ -33,3 +33,37 @@ location ^~ /grafana/ {
3333
rewrite ^/grafana/(.*)$ /$1 break;
3434

3535
}
36+
37+
location ^~ /grafana/api {
38+
include /config/nginx/proxy.conf;
39+
include /config/nginx/resolver.conf;
40+
set $upstream_grafana grafana;
41+
set $upstream_port 3000;
42+
set $upstream_proto http;
43+
proxy_pass http://$upstream_grafana:$upstream_port ;
44+
45+
# Clear Authorization Header if you are using http auth and normal Grafana auth
46+
#proxy_set_header Authorization "";
47+
48+
rewrite ^/grafana/(.*)$ /$1 break;
49+
50+
}
51+
52+
location ^~ /grafana/metrics {
53+
# enable the next two lines for http auth
54+
#auth_basic "Restricted";
55+
#auth_basic_user_file /config/nginx/.htpasswd;
56+
57+
include /config/nginx/proxy.conf;
58+
include /config/nginx/resolver.conf;
59+
set $upstream_grafana grafana;
60+
set $upstream_port 3000;
61+
set $upstream_proto http;
62+
proxy_pass http://$upstream_grafana:$upstream_port ;
63+
64+
# Clear Authorization Header if you are using http auth and normal Grafana auth
65+
#proxy_set_header Authorization "";
66+
67+
rewrite ^/grafana/(.*)$ /$1 break;
68+
69+
}

grocy.subdomain.conf.sample

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your grocy container is named grocy
33
# make sure that your dns has a cname set for grocy
44

@@ -44,7 +44,7 @@ server {
4444

4545
}
4646

47-
location /api {
47+
location ~ (/grocy)?/api {
4848
include /config/nginx/proxy.conf;
4949
include /config/nginx/resolver.conf;
5050
set $upstream_app grocy;

overseerr.subdomain.conf.sample

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your overseerr container is named overseerr
33
# make sure that your dns has a cname set for overseerr
44

@@ -43,4 +43,14 @@ server {
4343
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
4444

4545
}
46+
47+
location ~ (/overseerr)?/api {
48+
include /config/nginx/proxy.conf;
49+
include /config/nginx/resolver.conf;
50+
set $upstream_app overseerr;
51+
set $upstream_port 5055;
52+
set $upstream_proto http;
53+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
54+
55+
}
4656
}

portainer.subdomain.conf.sample

+2-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your portainer container is named portainer
33
# make sure that your dns has a cname set for portainer
44

@@ -45,20 +45,7 @@ server {
4545
proxy_hide_header X-Frame-Options; # Possibly not needed after Portainer 1.20.0
4646
}
4747

48-
location /api/websocket/ {
49-
# enable the next two lines for http auth
50-
#auth_basic "Restricted";
51-
#auth_basic_user_file /config/nginx/.htpasswd;
52-
53-
# enable for ldap auth (requires ldap-server.conf in the server block)
54-
#include /config/nginx/ldap-location.conf;
55-
56-
# enable for Authelia (requires authelia-server.conf in the server block)
57-
#include /config/nginx/authelia-location.conf;
58-
59-
# enable for Authentik (requires authentik-server.conf in the server block)
60-
#include /config/nginx/authentik-location.conf;
61-
48+
location ~ (/portainer)?/api {
6249
include /config/nginx/proxy.conf;
6350
include /config/nginx/resolver.conf;
6451
set $upstream_app portainer;

portainer.subfolder.conf.sample

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your portainer container is named portainer
33
# portainer does not require a base url setting
44

@@ -31,7 +31,7 @@ location ^~ /portainer/ {
3131
proxy_hide_header X-Frame-Options; # Possibly not needed after Portainer 1.20.0
3232
}
3333

34-
location ^~ /portainer/api/websocket/ {
34+
location ^~ /portainer/api {
3535
include /config/nginx/proxy.conf;
3636
include /config/nginx/resolver.conf;
3737
set $upstream_app portainer;

prometheus.subdomain.conf.sample

+39-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/02/12
22
# make sure that your prometheus container is named prometheus
33
# make sure that your dns has a cname set for prometheus
44

@@ -43,4 +43,42 @@ server {
4343
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
4444

4545
}
46+
47+
location ~ (/prometheus)?/api {
48+
include /config/nginx/proxy.conf;
49+
include /config/nginx/resolver.conf;
50+
set $upstream_app prometheus;
51+
set $upstream_port 9090;
52+
set $upstream_proto http;
53+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
54+
55+
}
56+
57+
location ~ (/prometheus)?/-/(healthy|ready|reload|quit) {
58+
# enable the next two lines for http auth
59+
#auth_basic "Restricted";
60+
#auth_basic_user_file /config/nginx/.htpasswd;
61+
62+
include /config/nginx/proxy.conf;
63+
include /config/nginx/resolver.conf;
64+
set $upstream_app prometheus;
65+
set $upstream_port 9090;
66+
set $upstream_proto http;
67+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
68+
69+
}
70+
71+
location ~ (/prometheus)?/metrics {
72+
# enable the next two lines for http auth
73+
#auth_basic "Restricted";
74+
#auth_basic_user_file /config/nginx/.htpasswd;
75+
76+
include /config/nginx/proxy.conf;
77+
include /config/nginx/resolver.conf;
78+
set $upstream_app prometheus;
79+
set $upstream_port 9090;
80+
set $upstream_proto http;
81+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
82+
83+
}
4684
}

0 commit comments

Comments
 (0)