-
-
Notifications
You must be signed in to change notification settings - Fork 314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Discount bandit #719
Open
Findarato
wants to merge
34
commits into
linuxserver:master
Choose a base branch
from
Findarato:discount-bandit
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Discount bandit #719
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
c7c393c
Merge pull request #4 from linuxserver/master
Findarato d5c3676
Merge branch 'master' of github.com:Findarato/reverse-proxy-confs
Findarato 22a4a5c
Merge pull request #5 from linuxserver/master
Findarato 126b571
Merge pull request #6 from linuxserver/master
Findarato 7053b1f
:sparkle: Added support for discountbandit
Findarato d632b0c
Merge branch 'master' into discount-bandit
Findarato 854886a
Merge pull request #7 from linuxserver/master
Findarato 7ea6c27
Merge branch 'linuxserver:master' into discount-bandit
Findarato 5e61c36
Merge branch 'master' of github.com:Findarato/reverse-proxy-confs
Findarato 5c09aae
:bug: Fixed comments in pull request
Findarato d3b59d8
Merge branch 'master' into discount-bandit
Findarato f37c24c
:bug: Fix(duplicate): Removed duplicate config entries
Findarato d33cc16
Merge branch 'master' into discount-bandit
Findarato d0fe17e
Merge branch 'master' into discount-bandit
Findarato e687ccc
:art: Cleaned up some formatting
Findarato 78770b9
:sparkle: Added support for discountbandit
Findarato 215e489
:bug: Fixed comments in pull request
Findarato 411b862
update port and name
drizuid 6bc210f
Update castopod.subdomain.conf.sample
drizuid 99c5dc5
:bug: Fix(duplicate): Removed duplicate config entries
Findarato e385ad3
Add kobo specific location matching for Calibre-web confs
DougEdey efc21ea
dnsdist: remove http2
aptalca 0a2c15a
support kobo
Findarato 43e4723
date
drizuid aa723dc
undo driz-mistake merge
drizuid 9d359f7
undo driz mistake merge
drizuid 1ae1fbd
Allow access to Baby Buddy API without auth
jgillman c41f4e4
Update date on babybuddy subdomain config
jgillman 2b6d327
Create romm.subdomain.conf.sample
bvandenabbeele dc18f96
remove optional headers
bvandenabbeele 12460ba
:art: Cleaned up some formatting
Findarato b6b5994
Merge branch 'discount-bandit' of github.com:Findarato/reverse-proxy-…
Findarato e2b2c6c
:bug: fix(http2): Removed HTTP2 directives as requested
Findarato 35d8a31
Merge branch 'master' into discount-bandit
Findarato File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,4 +75,4 @@ server { | |
proxy_buffers 4 256k; | ||
proxy_busy_buffers_size 256k; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
## Version 2024/11/25 | ||
# make sure that your discountbandit container is named discountbandit | ||
# make sure that your dns has a cname set for discountbandit | ||
|
||
server { | ||
listen 443 ssl; | ||
listen [::]:443 ssl; | ||
|
||
server_name discountbandit.*; | ||
|
||
include /config/nginx/ssl.conf; | ||
|
||
client_max_body_size 0; | ||
|
||
# enable for ldap auth (requires ldap-location.conf in the location block) | ||
#include /config/nginx/ldap-server.conf; | ||
|
||
# enable for Authelia (requires authelia-location.conf in the location block) | ||
#include /config/nginx/authelia-server.conf; | ||
|
||
# enable for Authentik (requires authentik-location.conf in the location block) | ||
#include /config/nginx/authentik-server.conf; | ||
|
||
location / { | ||
# enable the next two lines for http auth | ||
#auth_basic "Restricted"; | ||
#auth_basic_user_file /config/nginx/.htpasswd; | ||
|
||
# enable for ldap auth (requires ldap-server.conf in the server block) | ||
#include /config/nginx/ldap-location.conf; | ||
|
||
# enable for Authelia (requires authelia-server.conf in the server block) | ||
#include /config/nginx/authelia-location.conf; | ||
|
||
# enable for Authentik (requires authentik-server.conf in the server block) | ||
#include /config/nginx/authentik-location.conf; | ||
|
||
include /config/nginx/proxy.conf; | ||
include /config/nginx/resolver.conf; | ||
set $upstream_app discountbandit; | ||
set $upstream_port 80; | ||
set $upstream_proto http; | ||
proxy_pass $upstream_proto://$upstream_app:$upstream_port; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
## Version 2024/11/25 | ||
# make sure that your discountbandit container is named discountbandit | ||
# make sure that discountbandit is set to work with the base url /discountbandit/ | ||
|
||
|
||
location /discountbandit { | ||
return 301 $scheme://$host/discountbandit/; | ||
} | ||
|
||
location ^~ /discountbandit/ { | ||
# enable the next two lines for http auth | ||
#auth_basic "Restricted"; | ||
#auth_basic_user_file /config/nginx/.htpasswd; | ||
|
||
# enable for ldap auth (requires ldap-server.conf in the server block) | ||
#include /config/nginx/ldap-location.conf; | ||
|
||
# enable for Authelia (requires authelia-server.conf in the server block) | ||
#include /config/nginx/authelia-location.conf; | ||
|
||
# enable for Authentik (requires authentik-server.conf in the server block) | ||
#include /config/nginx/authentik-location.conf; | ||
|
||
include /config/nginx/proxy.conf; | ||
Findarato marked this conversation as resolved.
Show resolved
Hide resolved
|
||
include /config/nginx/resolver.conf; | ||
set $upstream_app discountbandit; | ||
set $upstream_port 80; | ||
set $upstream_proto http; | ||
proxy_pass $upstream_proto://$upstream_app:$upstream_port; | ||
} | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is calibre-web in this pr?