Skip to content

Commit be190d0

Browse files
authored
Merge branch 'master' into master
2 parents a5729ec + 4a16b16 commit be190d0

8 files changed

Lines changed: 200 additions & 9 deletions

.github/workflows/check_samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4.0.0
15+
uses: actions/checkout@v4.1.0
1616

1717
- name: Check Allowed File Names
1818
run: |

dashy.subdomain.conf.sample

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/05/31
1+
## Version 2023/08/11
22
# make sure that your dashy container is named dashy
33
# make sure that your dns has a cname set for dashy
44

@@ -38,7 +38,7 @@ server {
3838
include /config/nginx/proxy.conf;
3939
include /config/nginx/resolver.conf;
4040
set $upstream_app dashy;
41-
set $upstream_port 4000;
41+
set $upstream_port 80;
4242
set $upstream_proto http;
4343
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
4444
}

komga.subdomain.conf.sample

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/05/31
1+
## Version 2023/09/05
22
# make sure that your komga container is named komga
33
# make sure that your dns has a cname set for komga
44

@@ -38,7 +38,7 @@ server {
3838
include /config/nginx/proxy.conf;
3939
include /config/nginx/resolver.conf;
4040
set $upstream_app komga;
41-
set $upstream_port 8080;
41+
set $upstream_port 25600;
4242
set $upstream_proto http;
4343
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
4444

@@ -48,7 +48,7 @@ server {
4848
include /config/nginx/proxy.conf;
4949
include /config/nginx/resolver.conf;
5050
set $upstream_app komga;
51-
set $upstream_port 8080;
51+
set $upstream_port 25600;
5252
set $upstream_proto http;
5353
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
5454

komga.subfolder.conf.sample

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/09/05
22
# make sure that your komga container is named komga
33
# make sure that komga is set to work with the base url /komga/
44
# First make sure your Container has set an Baseurl set via docker-compose File "envirnoment: SERVER_SERVLET_CONTEXT_PATH=/komga" and recreate the container.
@@ -24,7 +24,7 @@ location ^~ /komga/ {
2424
include /config/nginx/proxy.conf;
2525
include /config/nginx/resolver.conf;
2626
set $upstream_app komga;
27-
set $upstream_port 8080 ;
27+
set $upstream_port 25600 ;
2828
set $upstream_proto http;
2929
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
3030

@@ -34,7 +34,7 @@ location ^~ /komga/api {
3434
include /config/nginx/proxy.conf;
3535
include /config/nginx/resolver.conf;
3636
set $upstream_app komga;
37-
set $upstream_port 8080;
37+
set $upstream_port 25600;
3838
set $upstream_proto http;
3939
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
4040
}

semaphore.subdomain.conf.sample

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
## Version 2023/09/01
2+
# make sure that your semaphore container is named semaphore
3+
# make sure that your dns has a cname set for semaphore
4+
5+
server {
6+
listen 443 ssl http2;
7+
listen [::]:443 ssl http2;
8+
9+
server_name semaphore.*;
10+
11+
include /config/nginx/ssl.conf;
12+
13+
client_max_body_size 0;
14+
15+
# enable for ldap auth (requires ldap-location.conf in the location block)
16+
#include /config/nginx/ldap-server.conf;
17+
18+
# enable for Authelia (requires authelia-location.conf in the location block)
19+
#include /config/nginx/authelia-server.conf;
20+
21+
# enable for Authentik (requires authentik-location.conf in the location block)
22+
#include /config/nginx/authentik-server.conf;
23+
24+
location / {
25+
# enable the next two lines for http auth
26+
#auth_basic "Restricted";
27+
#auth_basic_user_file /config/nginx/.htpasswd;
28+
29+
# enable for ldap auth (requires ldap-server.conf in the server block)
30+
#include /config/nginx/ldap-location.conf;
31+
32+
# enable for Authelia (requires authelia-server.conf in the server block)
33+
#include /config/nginx/authelia-location.conf;
34+
35+
# enable for Authentik (requires authentik-server.conf in the server block)
36+
#include /config/nginx/authentik-location.conf;
37+
38+
include /config/nginx/proxy.conf;
39+
include /config/nginx/resolver.conf;
40+
set $upstream_app semaphore;
41+
set $upstream_port 3000;
42+
set $upstream_proto http;
43+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
44+
45+
# Clear Authorization Header if you are using http auth and normal semaphore auth
46+
#proxy_set_header Authorization "";
47+
48+
}
49+
50+
}

semaphore.subfolder.conf.sample

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
## Version 2023/09/01
2+
# make sure that your grafana container is named grafana
3+
# make sure that grafana is set to work with the base url /grafana/
4+
5+
location ^~ /semaphore/ {
6+
# enable the next two lines for http auth
7+
#auth_basic "Restricted";
8+
#auth_basic_user_file /config/nginx/.htpasswd;
9+
10+
# enable for ldap auth (requires ldap-server.conf in the server block)
11+
#include /config/nginx/ldap-location.conf;
12+
13+
# enable for Authelia (requires authelia-server.conf in the server block)
14+
#include /config/nginx/authelia-location.conf;
15+
16+
# enable for Authentik (requires authentik-server.conf in the server block)
17+
#include /config/nginx/authentik-location.conf;
18+
19+
include /config/nginx/proxy.conf;
20+
include /config/nginx/resolver.conf;
21+
set $upstream_app semaphore;
22+
set $upstream_port 3000;
23+
set $upstream_proto http;
24+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
25+
26+
# Clear Authorization Header if you are using http auth and normal semaphore auth
27+
#proxy_set_header Authorization "";
28+
29+
rewrite ^/semaphore/(.*)$ /$1 break;
30+
31+
}
32+
33+
location ^~ /semaphore/api {
34+
include /config/nginx/proxy.conf;
35+
include /config/nginx/resolver.conf;
36+
set $upstream_app semaphore;
37+
set $upstream_port 3000;
38+
set $upstream_proto http;
39+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
40+
41+
# Clear Authorization Header if you are using http auth and normal semaphore auth
42+
#proxy_set_header Authorization "";
43+
44+
rewrite ^/semaphore/(.*)$ /$1 break;
45+
46+
}
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
## Version 2023/09/06
2+
# make sure that your unifi-network-application container is named unifi-network-application
3+
# make sure that your dns has a cname set for unifi
4+
# NOTE: If you use the proxy_cookie_path setting in proxy.conf you need to remove HTTPOnly;
5+
# ex: proxy_cookie_path / "/; Secure";
6+
7+
server {
8+
listen 443 ssl http2;
9+
listen [::]:443 ssl http2;
10+
11+
server_name unifi.*;
12+
13+
include /config/nginx/ssl.conf;
14+
15+
client_max_body_size 0;
16+
17+
# enable for ldap auth (requires ldap-location.conf in the location block)
18+
#include /config/nginx/ldap-server.conf;
19+
20+
# enable for Authelia (requires authelia-location.conf in the location block)
21+
#include /config/nginx/authelia-server.conf;
22+
23+
# enable for Authentik (requires authentik-location.conf in the location block)
24+
#include /config/nginx/authentik-server.conf;
25+
26+
location / {
27+
# enable the next two lines for http auth
28+
#auth_basic "Restricted";
29+
#auth_basic_user_file /config/nginx/.htpasswd;
30+
31+
# enable for ldap auth (requires ldap-server.conf in the server block)
32+
#include /config/nginx/ldap-location.conf;
33+
34+
# enable for Authelia (requires authelia-server.conf in the server block)
35+
#include /config/nginx/authelia-location.conf;
36+
37+
# enable for Authentik (requires authentik-server.conf in the server block)
38+
#include /config/nginx/authentik-location.conf;
39+
40+
include /config/nginx/proxy.conf;
41+
include /config/nginx/resolver.conf;
42+
set $upstream_app unifi-network-application;
43+
set $upstream_port 8443;
44+
set $upstream_proto https;
45+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
46+
47+
proxy_buffering off;
48+
}
49+
}

yourls.subdomain.conf.sample

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
## Version 2023/08/27
2+
# make sure that your yourls container is named yourls
3+
# make sure that your dns has a cname set for yourls if necessary
4+
5+
server {
6+
listen 443 ssl http2;
7+
listen [::]:443 ssl http2;
8+
9+
server_name yourls.*;
10+
11+
include /config/nginx/ssl.conf;
12+
13+
client_max_body_size 0;
14+
15+
# enable for ldap auth (requires ldap-location.conf in the location block)
16+
#include /config/nginx/ldap-server.conf;
17+
18+
# enable for Authelia (requires authelia-location.conf in the location block)
19+
#include /config/nginx/authelia-server.conf;
20+
21+
# enable for Authentik (requires authentik-location.conf in the location block)
22+
#include /config/nginx/authentik-server.conf;
23+
24+
location / {
25+
# enable the next two lines for http auth
26+
#auth_basic "Restricted";
27+
#auth_basic_user_file /config/nginx/.htpasswd;
28+
29+
# enable for ldap auth (requires ldap-server.conf in the server block)
30+
#include /config/nginx/ldap-location.conf;
31+
32+
# enable for Authelia (requires authelia-server.conf in the server block)
33+
#include /config/nginx/authelia-location.conf;
34+
35+
# enable for Authentik (requires authentik-server.conf in the server block)
36+
#include /config/nginx/authentik-location.conf;
37+
38+
include /config/nginx/proxy.conf;
39+
include /config/nginx/resolver.conf;
40+
set $upstream_app yourls;
41+
set $upstream_port 80;
42+
set $upstream_proto http;
43+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
44+
45+
}
46+
}

0 commit comments

Comments
 (0)