Home Service Manager Portal Feature Requests
We appreciate you taking the time to vote and add your suggestions to make our products awesome! Your request will be submitted to the community for review and inclusion into the backlog.

We recommend reviewing what is submitted before posting, in case your idea has already been submitted by another community member. If it has been submitted, vote for that existing feature request (by clicking the up arrow) to increase its opportunity of being added to Cireson solutions.

For more information around feature requests in the Cireson Community click here.
Options

Preserve IIS SSL Bindings During Upgrade Process

Chris_KeanderChris_Keander Customer Advanced IT Monkey ✭✭✭
See here for original thread:  https://community.cireson.com/discussion/comment/2933#Comment_2933

I just performed an upgrade from v5.0.9 to v6 and noticed that the https binding I had set in IIS was removed, preventing the site from loading until I added it back.

Cireson confirms these bindings are not kept during the upgrade process.


18 votes

Submitted · Last Updated

Comments

  • Options
    Conner_WoodConner_Wood Customer Ninja IT Monkey ✭✭✭✭
    edited September 2016
    Ah, I know exactly what you're talking about, it's true that it's not kept and a bit of a pain to go and copy paste the xml into the web.config again.

    <system.webServer>
      ~~~~~~~~~
      ~~~~~~~~~
      ~~~~~~~~~
    <b>  <rewrite>
        <rules>
          <rule name="HTTP to HTTPS Redirect" stopProcessing="true">
            <match url="(.*)" />
            <conditions>
              <add input="{HTTPS}" pattern="OFF" />
            </conditions>
            <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Found" />
          </rule>
        </rules>
      </rewrite></b>
    </system.webServer>
  • Options
    Trevor_WendtTrevor_Wendt Customer IT Monkey ✭
    Also removed redirects rules as Connor states. Noticed it wipes out IIS host header bindings as well.
Sign In or Register to comment.