{"id":22397144,"url":"https://github.com/archef2000/sslh","last_synced_at":"2026-02-22T14:04:51.792Z","repository":{"id":63094415,"uuid":"441683075","full_name":"archef2000/sslh","owner":"archef2000","description":"docker container for sslh","archived":false,"fork":false,"pushed_at":"2023-04-12T22:50:14.000Z","size":273,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-01T05:14:12.089Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/archef2000.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-25T13:18:46.000Z","updated_at":"2022-12-15T00:00:28.000Z","dependencies_parsed_at":"2023-01-23T15:46:13.156Z","dependency_job_id":null,"html_url":"https://github.com/archef2000/sslh","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archef2000%2Fsslh","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archef2000%2Fsslh/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archef2000%2Fsslh/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/archef2000%2Fsslh/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/archef2000","download_url":"https://codeload.github.com/archef2000/sslh/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245750368,"owners_count":20666165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-05T06:10:59.217Z","updated_at":"2025-10-19T00:29:17.988Z","avatar_url":"https://github.com/archef2000.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sslh\n\u003cp\u003eDocker alpine image containing \u003ca href=\"https://github.com/yrutschle/sslh\"\u003esslh\u003c/a\u003e, configurable with environment variables.\u003c/p\u003e\n\u003ch2\u003eUsage\u003c/h2\u003e\n\u003cp\u003eBy default, no multiplexing options are enabled:\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003eStart and expose port 443 and/or 80 with no configurations\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003edocker run -d -p 443:443 -p 80:80 --name sslh archef2000/sslh\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eTo configure a backend, set at least the \u003ccode\u003e*_HOST\u003c/code\u003e env var:\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003eStart and configure SSH, HTTP and HTTPS with default ports\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003edocker run -e SSH_HOST=host -e HTTP_HOST=somehost.internal -e SOCKS5_HOST=socks5 -e HTTPS_HOST=somehost.internal -p 443:443 -p 80:80 archef2000/sslh\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eIf the service is not listening on the default port, it can be overridden with the \u003ccode\u003e*_PORT\u003c/code\u003e env var:\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003eStart and configure SSH,HTTP and HTTPS with custom ports\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003edocker run -e SSH_HOST=host -e SSH_PORT=2222 -e HTTP_HOST=somehost.internal \\\n-e HTTP_HOST=8080 -e HTTPS_HOST=somehost.internal -e HTTPS_PORT=8443 -e OPENVPN_HOST=openvpn \\\n-e OPENVPN_PORT=1194 -e SOCKS5_PORT=1080 -e SOCKS5_HOST=socks5 -e ENABLE_IPV6=true -p 443:443 -p 80:80 archef2000/sslh\u003c/code\u003e\u003c/pre\u003e\n\u003ch3\u003eAvailable Environment Variables\u003c/h3\u003e\n\u003cp\u003eNaming should be self explanatory, defaults are indicated.\u003c/p\u003e\n\u003cp\u003eIf a \u003ccode\u003e*_HOST\u003c/code\u003e environment variable is omitted, it will not be configured.\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-bash\"\u003eHTTPS_HOST=\nHTTPS_PORT=8443\n\nOPENVPN_HOST=\nOPENVPN_PORT=1194\n\nSHADOWSOCKS_HOST=\nSHADOWSOCKS_PORT=8388\n\nSSH_HOST=\nSSH_PORT=22\n\nHTTP_HOST= \nHTTP_PORT=80\n\nSOCKS5_HOST=socks5\n SOCKS5_PORT=1080\n\u003c/code\u003e\u003c/pre\u003e\n\u003ch2\u003edocker-compose\u003c/h2\u003e\n\u003cp\u003eThis can also be run with docker-compose:\u003c/p\u003e\n\u003cpre\u003e\u003ccode class=\"language-yaml\"\u003e---\nversion: '3'\nservices:\n  sslh:\n    image: archef2000/sslh:latest\n    ports:\n      - 443:443\n      - 80:80\n    environment:\n      - HTTPS_HOST=web\n      - HTTPS_PORT=443\n      - HTTP_HOST=web\n      - HTTP_PORT=80\n      - SSH_HOST=172.17.0.1 # Point to the Docker Host's IP\n      - SSH_PORT=22\n      - OPENVPN_HOST=openvpn\n      - OPENVPN_PORT=1194\n      - SOCKS5_HOST=socks5\n      - SOCKS5_PORT=1080\n      - ENABLE_IPV6=true\n\u003c/code\u003e\u003c/pre\u003e\n\u003chr\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchef2000%2Fsslh","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farchef2000%2Fsslh","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchef2000%2Fsslh/lists"}