Building shadow socks server on arukas.io and connect it with a regular client

The following content no longer works…

Building shadow socks server on arukas.io

#Start a regular application with 512 Mb RAM with Docker image: lowid/ss-with-net-speeder:latest from Docker Hub.

#At least one tcp port need to be open to the public network. No environment variables is needed.

#Start the application with: ssserver -p [tcp port] -k [password] -m [encrption] in the CMD section.
In this case, I use: ssserver -p 1111 -k 123123 -m aes-256-cfb

*****done with server configuration*****

connect it with a regular client

#Commonly, just connect the server with the given domain name and password will work.

#in my case, there an error reported as:

System.Reflection.TargetInvocationException: 调用的目标发生了异常。 ---> System.InvalidOperationException: 此实现不是 Windows 平台 FIPS 验证的加密算法的一部分。
在 System.Security.Cryptography.MD5CryptoServiceProvider..ctor()
--- 内部异常堆栈跟踪的结尾 ---`

Solved by switching the key value of “enable” in HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy to 0.

*****done with client configuration*****

Ps: This docker platform have a good network bandwidth which I really like. But it changes its domain name for tcp protocol ports and always change my application size from 512mb to 256mb automaticlly for some reason.