Skip to content

Commit

Permalink
fix: proxy protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
zdm committed Jan 2, 2024
1 parent 3443d8c commit efd8df4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/app/components/nginx/nginx/proxy/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class NginxProxyServer {
sslEnabled = !!sslEnabled;
}

this.#proxyProtocol = !!proxyProtocol;
proxyProtocol = !!proxyProtocol;
}

// names
Expand All @@ -60,6 +60,8 @@ export default class NginxProxyServer {
this.#ssl = new Ssl( this );
}

this.#proxyProtocol = proxyProtocol;

this.#maxBodySize = maxBodySize || this.nginx.config.maxBodySize;

// cache enabled
Expand Down

0 comments on commit efd8df4

Please sign in to comment.