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 6acba27 commit 06be9beCopy full SHA for 06be9be
packages/unraid-api-plugin-connect/src/network/url-resolver.service.ts
@@ -331,9 +331,10 @@ export class UrlResolverService {
331
nginx.fqdnUrls?.forEach((fqdnUrl: FqdnEntry) => {
332
doSafely(() => {
333
const urlType = this.getUrlTypeFromFqdn(fqdnUrl.interface);
334
+ const portToUse = urlType === URL_TYPE.LAN ? nginx.httpsPort : wanport || nginx.httpsPort;
335
const fqdnUrlToUse = this.getUrlForField({
336
url: fqdnUrl.fqdn,
- portSsl: Number(wanport || nginx.httpsPort),
337
+ portSsl: Number(portToUse),
338
});
339
340
urls.push({
0 commit comments