marifaleiros
Posts: 1
Joined: Tue Sep 13, 2022 7:33 pm

Binding SSLFlags property not set

Tue Sep 13, 2022 8:04 pm

Hello,

I'm using Advanced Installer v19.6 and I'm trying to set the binding's sslFlags property to disable HTTP/2. This should be set in the applicationHost.config and the value should be set to 4. I try doing so with:

AccessSSLFlags="4"

Code: Select all

<ROW WebSiteId="1" Root="Api_Dir" Condition="1" AccessFlags="127585" AccessPerm="513" DocumentList="index.html, index.htm, default.htm" AppPool="0" ContentExpireUnits="0" ContentExpireTime="0" WebApplication="MySite" AccessSSLFlags="4" ConnectionTimeout="-1" MaxConcurrentRequests="-1" MaxRequests="-1" TimeLimit="-1" />
But at applicationHost.config file, it still set to 0:

sslFlags="0"

Code: Select all

<site name="MySite" id="2" serverAutoStart="true">
    <application path="/" applicationPool="MySite">
        <virtualDirectory path="/" physicalPath="C:\Program Files\MySite" />
    </application>
    <bindings>
        <binding protocol="https" bindingInformation="*:7780:" sslFlags="0" />
    </bindings>
    <applicationDefaults applicationPool="MySite" />
</site>
And when I check the IIS binding setting, it shows Disable HTTP/2 unmarked (IIS > Sites > MySite > Bindings > Edit)

Is this not supported by Advanced Installer or am I missing something?

Catalin
Posts: 6542
Joined: Wed Jun 13, 2018 7:49 am

Re: Binding SSLFlags property not set

Fri Sep 16, 2022 5:10 pm

Hello and welcome to our forums,

I'm afraid I do not fully understand your scenario here.

If possible, could you please give me some more details (perhaps a test-case I can follow in order to reproduce this on my end)?

Best regards,
Catalin
Catalin Gheorghe - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Common Problems”