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 0d4cf9f commit af061faCopy full SHA for af061fa
packages/unraid-api-plugin-connect/src/network/url-resolver.service.ts
@@ -351,10 +351,9 @@ export class UrlResolverService {
351
nginx.fqdnUrls?.forEach((fqdnUrl: FqdnEntry) => {
352
doSafely(() => {
353
const urlType = this.getUrlTypeFromFqdn(fqdnUrl.interface);
354
- const portToUse = urlType === URL_TYPE.LAN ? nginx.httpsPort : wanport || nginx.httpsPort;
355
const fqdnUrlToUse = this.getUrlForField({
356
url: fqdnUrl.fqdn,
357
- portSsl: Number(portToUse),
+ portSsl: Number(wanport || nginx.httpsPort),
358
});
359
360
urls.push({
0 commit comments