We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to run it as a Windows Service? It looks possible to start it using sc [command] [service name] ...
like sc.exe \localhost create ssl-proxy binpath= c:\ssl-proxy.exe
but how to add "from 127.0.0.1:4430 to 127.0.0.1:8000"
The text was updated successfully, but these errors were encountered:
Was able to install it as a Windows Service by: sc create ssl-proxy start= auto binpath= C:\temp\ssl-proxy\ssl-proxy.exe
Now to repair the Error 1053 meaning that a Windows service fails to start within a specified amount of time.
Sorry, something went wrong.
Found a good explanation why https://www.coretechnologies.com/blog/windows-services/sc-service-fails-to-start/
Got ssl-proxy running as a Windows Service using Alwaysup.
https://www.coretechnologies.com/products/AlwaysUp/
No branches or pull requests
Is it possible to run it as a Windows Service?
It looks possible to start it using sc [command] [service name] ...
like sc.exe \localhost create ssl-proxy binpath= c:\ssl-proxy.exe
but how to add "from 127.0.0.1:4430 to 127.0.0.1:8000"
The text was updated successfully, but these errors were encountered: