Add cross ref for how to generate SSL certs. (#401)

This commit is contained in:
Abhinav Singh 2020-07-12 21:24:20 +05:30 committed by GitHub
parent af3bdc23e7
commit 1867d58338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ KeyboardInterrupt
1. Same as `tcp_echo_server.py`.
2. Internally uses `proxy.common.utils.wrap_socket` to enable SSL encryption.
3. Uses `https-key.pem` and `https-signed-cert.pem` for SSL encryption.
3. Uses `https-key.pem` and `https-signed-cert.pem` for SSL encryption. See [End-to-End Encryption](https://github.com/abhinavsingh/proxy.py#end-to-end-encryption) for instructions on how to generate SSL certificates.
Start `ssl_echo_server.py` as:

View File

@ -19,7 +19,7 @@ from .web_server_route import WebServerPlugin
from .reverse_proxy import ReverseProxyPlugin
from .proxy_pool import ProxyPoolPlugin
from .filter_by_client_ip import FilterByClientIpPlugin
from .modify_chunk_response_plugin import ModifyChunkResponsePlugin
from .modify_chunk_response import ModifyChunkResponsePlugin
__all__ = [
'CacheResponsesPlugin',