Skip to content

Instantly share code, notes, and snippets.

@mig42
Created October 4, 2018 11:13
Show Gist options
  • Save mig42/d9dea488741c58f19b77d582972aa880 to your computer and use it in GitHub Desktop.
Save mig42/d9dea488741c58f19b77d582972aa880 to your computer and use it in GitHub Desktop.
Plastic SCM SSL configuration files
<!-- save this file as %PROGRAMFILES%\PlasticSCM5\client\remoting.conf or /opt/plasticscm5/client/remoting.conf -->
<configuration>
<system.runtime.remoting>
<application>
<channels>
<channel type="Codice.Channels.PlasticTcpChannel, plastictcpchannel" name="normal">
<clientProviders>
<provider type="Codice.Channels.ClientSinkProvider, plastictcpchannel" />
<formatter ref="binary" />
</clientProviders>
</channel>
<channel type="Codice.Channels.PlasticSecuredTcpChannel, plastictcpchannel" >
<clientProviders>
<provider type="Codice.Channels.ClientSinkProvider, plastictcpchannel" />
<formatter ref="binary" />
</clientProviders>
</channel>
</channels>
</application>
</system.runtime.remoting>
</configuration>
<!-- save this file as %PROGRAMFILES%\PlasticSCM5\server\remoting.conf or /opt/plasticscm5/server/remoting.conf -->
<configuration>
<system.runtime.remoting>
<application>
<channels>
<channel type="Codice.Channels.PlasticTcpChannel,plastictcpchannel" port="8084" name="normal" >
<serverProviders>
<formatter type="Codice.Channels.PlasticBinaryServerFormatterSinkProvider, plastictcpchannel" typeFilterLevel="Full" Compression="sinklevel" SerializationObjectsAtSink="true" BufferPoolMax="10"/>
<provider type="Codice.CM.Server.ExceptionTracerSinkProvider, servercommon" />
</serverProviders>
<clientProviders>
<provider type="Codice.Channels.ClientSinkProvider, plastictcpchannel" />
<formatter ref="binary" />
</clientProviders>
</channel>
<channel type="Codice.Channels.PlasticSecuredTcpChannel, plastictcpchannel" port="8085" sslCertificateFile="plastic.cert" sslPrivateKeyFile="plastic.key" name="secured">
<serverProviders>
<formatter type="Codice.Channels.PlasticBinaryServerFormatterSinkProvider, plastictcpchannel" typeFilterLevel="Full" Compression="sinklevel" SerializationObjectsAtSink="true" BufferPoolMax="10"/>
<provider type="Codice.CM.Server.ExceptionTracerSinkProvider, servercommon" />
</serverProviders>
</channel>
</channels>
</application>
</system.runtime.remoting>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment