Arbit - project tracking

Arbit - project tracking

Installation under IIS

Arbit under IIS on Windows requires URL Rewrite extension

URL rewrite has an import tool that converts .htaccess files, and it correctly imports the file provided with arbit. for IIS, creating web.config file similar to this:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
      <rewrite>
          <rules>
              <rule name="Images" stopProcessing="true">
                  <match url="images/.*" ignoreCase="false" />
                  <action type="Rewrite" url="{R:0}" />
              </rule>
              <rule name="Styles" stopProcessing="true">
                  <match url="styles/.*" ignoreCase="false" />
                  <action type="Rewrite" url="{R:0}" />
              </rule>
              <rule name="Scripts" stopProcessing="true">
                  <match url="scripts/.*" ignoreCase="false" />
                  <action type="Rewrite" url="{R:0}" />
              </rule>
              <rule name="Index" stopProcessing="true">
                  <match url=".*" ignoreCase="false" />
                  <action type="Rewrite" url="index.php" appendQueryString="true" />
              </rule>
          </rules>
      </rewrite>
  </system.webServer>
</configuration>


Another required step is to create or install an SSL certificate and edit the site bindings to allow https connections, as some links seem to be forced to https.