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 61eb175 commit 1c8bb30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/app/components/nginx/nginx/proxy.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export default class NginxProxy {
if ( serverNames.size ) {
const lines = [];

for ( const [serverName, socketPath] of serverNames.emtrits() ) {
for ( const [serverName, socketPath] of serverNames.entries() ) {
lines.push( `"${serverName}" "unix:${socketPath}";\n` );
}

Expand Down

0 comments on commit 1c8bb30

Please sign in to comment.