Skip to content
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

correct systemd-resolved related nginx config #1271

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/general/networking/nginx.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ server {
# use a variable to store the upstream proxy
# in this example we are using a hostname which is resolved via DNS
# (if you aren't using DNS remove the resolver line and change the variable to point to an IP address e.g `set $jellyfin 127.0.0.1`)
# NOTE: Implementations using systemd-resolved should replace the resolver address with 127.0.0.53 and
# those running nginx in docker should ensure the resolver is 127.0.0.11
set $jellyfin jellyfin;
resolver 127.0.0.1 valid=30s;

Expand Down
Loading