Skip to content

Commit

Permalink
enable tls by default if undefined (#11994)
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeblackshear committed Jun 16, 2024
1 parent e208241 commit f1bb797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/main/rootfs/usr/local/nginx/get_tls_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
except FileNotFoundError:
config: dict[str, any] = {}

tls_config: dict[str, any] = config.get("tls", {})
tls_config: dict[str, any] = config.get("tls", {"enabled": True})

print(json.dumps(tls_config))

0 comments on commit f1bb797

Please sign in to comment.