Configuring FileService - Synergex/SqlReplication GitHub Wiki

The service exposes the files in a single storage folder. By default that storage folder is:

C:\Users\Public\Documents\FileService

You can change the location used by editing the configuration file and specifying an alternate location via the StorageFolder setting. The configuration file is:

C:\Program Files (x86)\Synergex\FileService\FileService.exe.config

The HTTP port that the server listens on can also be altered by changing the value of the HttpListenerPort setting.

<FileService.Properties.Settings>
    <setting name="StorageFolder" serializeAs="String">
        <value>C:\some\other\folder</value>
    </setting>
    <setting name="HttpListenerPort" serializeAs="String">
        <value>8080</value>
    </setting>
</FileService.Properties.Settings> 

If you make any changes to this file then you must stop and restart the service.

⚠️ **GitHub.com Fallback** ⚠️