We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 700d908 commit 5dbb0b9Copy full SHA for 5dbb0b9
backend/internal/nginx.js
@@ -236,9 +236,9 @@ const internalNginx = {
236
237
if ( nice_host_type === 'proxy_host' ) {
238
let listen_ports = [];
239
- host.domain_names.map(function (domain_name) {
240
- if ( domain_name.indexOf(":") > 0 ){
241
- listen_ports.push(parseInt(domain_name.substring(domain_name.indexOf(":")+1)));
+ host.domain_names.map( function (domain_name) {
+ if ( domain_name.indexOf(':') > 0 ){
+ listen_ports.push(parseInt(domain_name.substring(domain_name.indexOf(':')+1)));
242
}
243
});
244
if ( listen_ports.length > 0 ){
0 commit comments