We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5738540 + 8627400 commit 24bca5eCopy full SHA for 24bca5e
1 file changed
influxdb.subdomain.conf.sample
@@ -1,4 +1,4 @@
1
-## Version 2023/05/31
+## Version 2024/01/08
2
# make sure that your influxdb container is named influxdb
3
# make sure that your dns has a cname set for influxdb
4
@@ -41,6 +41,16 @@ server {
41
set $upstream_port 8086;
42
set $upstream_proto http;
43
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
44
+
45
}
-}
46
47
+ location ~ (/influxdb)?/api {
48
+ include /config/nginx/proxy.conf;
49
+ include /config/nginx/resolver.conf;
50
+ set $upstream_app influxdb;
51
+ set $upstream_port 8086;
52
+ set $upstream_proto http;
53
+ proxy_pass $upstream_proto://$upstream_app:$upstream_port;
54
55
+ }
56
+}
0 commit comments