Compare commits
No commits in common. "main" and "0.2.19" have entirely different histories.
3 changed files with 2 additions and 11 deletions
|
|
@ -1,5 +1,5 @@
|
|||
[workspace.package]
|
||||
version = "0.2.20"
|
||||
version = "0.2.19"
|
||||
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
|
||||
trictrac = with final; rustPlatform.buildRustPackage {
|
||||
pname = "trictrac";
|
||||
version = "0.2.20"; # trictrac-version
|
||||
version = "0.2.19"; # trictrac-version
|
||||
src = ./.;
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
|
|
|||
|
|
@ -137,18 +137,9 @@ in
|
|||
forceSSL = withSSL;
|
||||
# Explicit listen so this vhost isn't shadowed by a default_server
|
||||
# created by other virtual hosts with forceSSL = true.
|
||||
# When withSSL is true, also list plain-HTTP addresses (ssl =
|
||||
# false): NixOS's forceSSL redirect vhost is generated by
|
||||
# filtering this list down to the non-SSL entries, so without
|
||||
# them the redirect server ends up with no `listen` at all and
|
||||
# nginx silently falls back to its compiled-in default port
|
||||
# (8000), clashing with any other service using that port.
|
||||
listen = [
|
||||
{ addr = "0.0.0.0"; port = listenPort; ssl = withSSL; }
|
||||
{ addr = "[::]"; port = listenPort; ssl = withSSL; }
|
||||
] ++ optionals withSSL [
|
||||
{ addr = "0.0.0.0"; port = 80; ssl = false; }
|
||||
{ addr = "[::]"; port = 80; ssl = false; }
|
||||
];
|
||||
locations."/" = {
|
||||
extraConfig = proxyConfig;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue