-
Notifications
You must be signed in to change notification settings - Fork 10
Fix Traefik API/ACME issues, seerr mount, qBittorrent env + README improvements #9
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
base: main
Are you sure you want to change the base?
Changes from all commits
3e28c19
72ff65e
3e11f2e
2bb3c1d
fb23cc5
a56afc0
f8e2a2e
9d58a29
d83f876
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,17 +48,16 @@ services: | |
| VPN_SERVICE_PROVIDER: protonvpn | ||
| VPN_TYPE: wireguard | ||
| WIREGUARD_PRIVATE_KEY: ${WG_PRIVATE_KEY} | ||
| WIREGUARD_PUBLIC_KEY: ${WG_PUBLIC_KEY} | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. https://github.com/qdm12/gluetun-wiki/blob/main/setup/options/wireguard.md shouldn't that be still here? Might be wrong, but some providers require it
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You're probably right that some service need it. I had problems to connect to protonvpn with the default stack. I'm not sure if it's this part or the other changes to gluetun service that resolve the problem. Maybe we can comment it by default? Feel free to commit some change, it's your stack after all! |
||
| OPENVPN_USER: ${PROTONVPN_USERNAME} | ||
| OPENVPN_PASSWORD: ${PROTONVPN_PASSWORD} | ||
| WIREGUARD_ADDRESSES: ${WG_ADDRESSES:-10.2.0.2/32} | ||
| # Improved stability settings | ||
| WIREGUARD_PERSISTENT_KEEPALIVE_INTERVAL: 25s # Increased for better stability | ||
| SERVER_COUNTRIES: Netherlands,Switzerland | ||
| SERVER_FEATURES: p2p | ||
| # Port-forwarding | ||
| VPN_PORT_FORWARDING: "on" | ||
| VPN_PORT_FORWARDING_PROVIDER: protonvpn | ||
| VPN_PORT_FORWARD_ONLY: "on" | ||
| PORT_FORWARD_ONLY: "on" | ||
| VPN_PORT_FORWARDING: on | ||
| PORT_FORWARD_ONLY: on | ||
| FIREWALL_VPN_INPUT_PORTS: "8080,9999" | ||
| HEALTH_SERVER_ADDRESS: 0.0.0.0:9999 | ||
| # DNS Configuration for better resolution | ||
|
|
@@ -100,9 +99,7 @@ services: | |
| PGID: ${PGID:-100} | ||
| TZ: ${TZ:-Europe/Warsaw} | ||
| WEBUI_PORT: 8080 | ||
| WEBUI_USERNAME: ${QB_USERNAME:-admin} | ||
| WEBUI_PASSWORD: ${QB_PASSWORD:?Set QB_PASSWORD in .env} | ||
| TORRENTING_PORT: 51413 | ||
| TORRENTING_PORT: ${BT_PORT} | ||
| BIND_TO_INTERFACE: tun0 # Bind qBittorrent to the VPN interface | ||
| volumes: | ||
| - ${DATA_DIR}/qbittorrent:/config | ||
|
|
@@ -248,7 +245,7 @@ services: | |
| PGID: ${PGID:-1000} | ||
| TZ: ${TZ:-Europe/Warsaw} | ||
| volumes: | ||
| - ${DATA_DIR}/seerr/config:/config | ||
| - ${DATA_DIR}/seerr/config:/app/config | ||
| restart: unless-stopped | ||
| healthcheck: | ||
| test: ["CMD", "wget", "-qO-", "http://localhost:5055/health"] | ||
|
|
||
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.
wildcard option would be more elegant
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.
Oh well, that's exactly what I was running against with this section. I have at least 20 other subdomains that are not routed through this stack and I would not want the people following this guide to introduce problems with a wildcard (If they already have a domain, they probably already have some subdomains registered).
In fact, in this section, I wanted to list the subdomains so that people would know and understand which one to use to access each service (the qbit one was a bit of a surprise for me since I was trying "qbittorrent" at first)!
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.
those are good comments, I will try to improve them a bit and merge