Skip to content

Commit 31c2857

Browse files
authored
Merge pull request #612 from Jurrer/master
Created new configs for linkace, storm and YourSpotify
2 parents e972dc4 + 0558de6 commit 31c2857

File tree

4 files changed

+201
-0
lines changed

4 files changed

+201
-0
lines changed

linkace.subdomain.conf.sample

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

storm.subdomain.conf.sample

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
## Version 2023/02/05
2+
# reverse proxy config for a modern deluge interface named storm
3+
# https://github.com/relvacode/storm
4+
# make sure that your storm container is named storm
5+
# make sure that your dns has a cname set for storm
6+
7+
server {
8+
listen 443 ssl http2;
9+
listen [::]:443 ssl http2;
10+
11+
server_name storm.*;
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 storm;
43+
set $upstream_port 8221;
44+
set $upstream_proto http;
45+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
46+
47+
48+
}
49+
50+
51+
}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
## Version 2023/10/17
2+
# https://github.com/Yooooomi/your_spotify
3+
# this is not a standalone config, it requires configured your-spotify web container for full functionality.
4+
# it uses server URLs for api callbacks, thus a server is required
5+
# make sure that your YourSpotify api container is named your-spotify-server
6+
# make sure that your dns has a cname set for your-spotify-server
7+
# do not forget to finish configuration following instructions in apps repository. API_ENDPOINT=https://your-spotify-server.[your domain].
8+
9+
server {
10+
listen 443 ssl http2;
11+
listen [::]:443 ssl http2;
12+
13+
server_name your-spotify-server.*;
14+
15+
include /config/nginx/ssl.conf;
16+
17+
client_max_body_size 0;
18+
19+
# enable for ldap auth (requires ldap-location.conf in the location block)
20+
#include /config/nginx/ldap-server.conf;
21+
22+
# enable for Authelia (requires authelia-location.conf in the location block)
23+
#include /config/nginx/authelia-server.conf;
24+
25+
# enable for Authentik (requires authentik-location.conf in the location block)
26+
#include /config/nginx/authentik-server.conf;
27+
28+
location / {
29+
# enable the next two lines for http auth
30+
#auth_basic "Restricted";
31+
#auth_basic_user_file /config/nginx/.htpasswd;
32+
33+
# enable for ldap auth (requires ldap-server.conf in the server block)
34+
#include /config/nginx/ldap-location.conf;
35+
36+
# enable for Authelia (requires authelia-server.conf in the server block)
37+
#include /config/nginx/authelia-location.conf;
38+
39+
# enable for Authentik (requires authentik-server.conf in the server block)
40+
#include /config/nginx/authentik-location.conf;
41+
42+
include /config/nginx/proxy.conf;
43+
include /config/nginx/resolver.conf;
44+
set $upstream_app your-spotify-server;
45+
set $upstream_port 8080;
46+
set $upstream_proto http;
47+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
48+
49+
}
50+
51+
}

your-spotify.subdomain.conf.sample

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
## Version 2023/10/17
2+
# https://github.com/Yooooomi/your_spotify
3+
# this is not a standalone config, it requires configured your-spotify api container for full functionality.
4+
# it uses server URLs for api callbacks, thus a server is required
5+
# make sure that your YourSpotify web container is named your-spotify-web
6+
# make sure that your dns has a cname set for your-spotify
7+
# do not forget to finish configuration following instructions in apps repository. CLIENT_ENDPOINT=https://your-spotify.[your domain]
8+
9+
server {
10+
listen 443 ssl http2;
11+
listen [::]:443 ssl http2;
12+
13+
server_name your-spotify.*;
14+
15+
include /config/nginx/ssl.conf;
16+
17+
client_max_body_size 0;
18+
19+
# enable for ldap auth (requires ldap-location.conf in the location block)
20+
#include /config/nginx/ldap-server.conf;
21+
22+
# enable for Authelia (requires authelia-location.conf in the location block)
23+
#include /config/nginx/authelia-server.conf;
24+
25+
# enable for Authentik (requires authentik-location.conf in the location block)
26+
#include /config/nginx/authentik-server.conf;
27+
28+
location / {
29+
# enable the next two lines for http auth
30+
#auth_basic "Restricted";
31+
#auth_basic_user_file /config/nginx/.htpasswd;
32+
33+
# enable for ldap auth (requires ldap-server.conf in the server block)
34+
#include /config/nginx/ldap-location.conf;
35+
36+
# enable for Authelia (requires authelia-server.conf in the server block)
37+
#include /config/nginx/authelia-location.conf;
38+
39+
# enable for Authentik (requires authentik-server.conf in the server block)
40+
#include /config/nginx/authentik-location.conf;
41+
42+
include /config/nginx/proxy.conf;
43+
include /config/nginx/resolver.conf;
44+
set $upstream_app your-spotify-web;
45+
set $upstream_port 3000;
46+
set $upstream_proto http;
47+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
48+
49+
}
50+
51+
}
52+
53+

0 commit comments

Comments
 (0)