{"id":15022596,"url":"https://github.com/sajetek-developer/php5.6-ols-ssl","last_synced_at":"2026-04-07T05:31:20.261Z","repository":{"id":247680176,"uuid":"826547656","full_name":"SaJeTek-Developer/php5.6-ols-ssl","owner":"SaJeTek-Developer","description":"Docker image w\\php 5.6.40/7.4 running on Openlitespeed \\w SSL enabled","archived":false,"fork":false,"pushed_at":"2024-07-09T23:36:38.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-19T17:55:53.923Z","etag":null,"topics":["centos","centos7","docker","dockerfile","php5","php56"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/sajetek/php5.6-ols-ssl","language":"Shell","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/SaJeTek-Developer.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-09T23:25:51.000Z","updated_at":"2024-07-09T23:37:57.000Z","dependencies_parsed_at":"2024-07-10T03:25:34.076Z","dependency_job_id":"03daff3d-2f11-4db7-a930-b906590c2041","html_url":"https://github.com/SaJeTek-Developer/php5.6-ols-ssl","commit_stats":null,"previous_names":["sajetek-developer/php5.6-ols-ssl"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaJeTek-Developer%2Fphp5.6-ols-ssl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaJeTek-Developer%2Fphp5.6-ols-ssl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaJeTek-Developer%2Fphp5.6-ols-ssl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaJeTek-Developer%2Fphp5.6-ols-ssl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SaJeTek-Developer","download_url":"https://codeload.github.com/SaJeTek-Developer/php5.6-ols-ssl/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243318758,"owners_count":20272144,"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":["centos","centos7","docker","dockerfile","php5","php56"],"created_at":"2024-09-24T19:58:09.586Z","updated_at":"2025-12-28T07:24:10.048Z","avatar_url":"https://github.com/SaJeTek-Developer.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"[Docker image](https://hub.docker.com/r/sajetek/php5.6-ols-ssl) for old applications running php5.6.40 - Can also run applications on php 7.4.33\u003cbr/\u003e\nCentOS 7 with active repository (added from archives)\u003cbr/\u003e\nSSL enabled with selfsigned SSL certificate\u003cbr/\u003e\n\u003cstrong\u003eSize: ~903MB\u003c/strong\u003e\u003cbr/\u003e\n\n\u003cH4\u003eHow to build:\u003c/H4\u003e\n\u003ccode\u003edocker build -t image-name .\n\u003c/code\u003e\u003cbr/\u003e\n\n\u003chr\u003e\n\n\u003cH3\u003eConfigurable:\u003c/H3\u003e\nEXPOSED PORTS: 80 443 7080\u003cbr/\u003e\u003cbr/\u003e\n\n#ENV#\u003cbr/\u003e\nDEFAULT_PHP: 56\u003cbr/\u003e\nDOCUMENT_ROOT: /\u003cbr/\u003e\n\n\u003cH3\u003eConfigurable:\u003c/H3\u003e\nSet ENV DEFAULT_PHP to 56 or 74 to switch between lsphp56 or lsphp74\u003cbr/\u003e\nSet ENV DOCUMENT_ROOT to / for regular websites or /public for laravel applications etc. or as needed\u003cbr/\u003e\n\n\u003cH4\u003eHow to run:\u003c/H4\u003e\n\u003ccode\u003edocker run -d -p 8708:7080 -p 8000:80 -p 8443:443 --name sajetek-php5.6-ols-ssl -e \"DOCUMENT_ROOT=/\" -e \"DEFAULT_PHP=56\" docker.io/sajetek/php5.6-ols-ssl\u003cbr/\u003e\ndocker run -d -p 8708:7080 -p 8000:80 -p 8443:443 --name sajetek-php5.6-ols-ssl -e \"DOCUMENT_ROOT=/\" -e \"DEFAULT_PHP=56\" sajetek/php5.6-ols-ssl -v \n/some/host/path:/usr/local/lsws/Example/html\n\u003c/code\u003e\u003cbr/\u003e\n\n\u003cH4\u003eModify the image if required via ssh for your needs\u003c/H4\u003e\ne.g. removing or adding modules, compiling another php etc.\u003cbr/\u003e\n\u003ccode\u003eimage=\"docker.io/sajetek/php5.6-ols-ssl\"\u003cbr/\u003e\ndocker pull $image\u003cbr/\u003e\ncontainer_id=$(docker run -d -it --name temp $image)\u003cbr/\u003e\ndocker exec -it temp /bin/bash\u003cbr/\u003e\n\u003c/code\u003e\n\n#You are now chrooted into the image. type exit when finished\u003cbr/\u003e\n#Install more php versions or do what you need... add or remove modules etc.\u003cbr/\u003e\n#Type \u003cstrong\u003eexit\u003c/strong\u003e when finished\u003cbr/\u003e\u003cbr/\u003e\n\u003ccode\u003edocker commit $container_id $image\u003cbr/\u003e\ndocker stop $container_id\u003cbr/\u003e\ndocker rm $container_id\n\u003c/code\u003e\n\n\n\u003cH4\u003eOpenlitespeed v1.8.1\u003c/H4\u003e\n\u003col\u003e\u003cli\u003emod_rewrite\u003c/li\u003e\u003cli\u003emod_mime\u003c/li\u003e\u003cli\u003emod_headers\u003c/li\u003e\u003cli\u003emod_expires\u003c/li\u003e\u003cli\u003emod_auth_basic\u003c/li\u003e\u003c/ol\u003e\n\n\u003cH4\u003ephp5.6.40\u003c/H4\u003e - enabled by default\n\u003col\u003e\u003cli\u003eioncube_loader\u003c/li\u003e\u003cli\u003eopcache\u003c/li\u003e\u003cli\u003ebcmath\u003c/li\u003e\u003cli\u003ebz2\u003c/li\u003e\u003cli\u003ecalendar\u003c/li\u003e\u003cli\u003ectype\u003c/li\u003e\u003cli\u003ecurl\u003c/li\u003e\u003cli\u003edba\u003c/li\u003e\u003cli\u003edom\u003c/li\u003e\u003cli\u003eenchant\u003c/li\u003e\u003cli\u003eexif\u003c/li\u003e\u003cli\u003efileinfo\u003c/li\u003e\u003cli\u003eftp\u003c/li\u003e\u003cli\u003egd\u003c/li\u003e\u003cli\u003egettext\u003c/li\u003e\u003cli\u003egmp\u003c/li\u003e\u003cli\u003eiconv\u003c/li\u003e\u003cli\u003eimap\u003c/li\u003e\u003cli\u003eintl\u003c/li\u003e\u003cli\u003eldap\u003c/li\u003e\u003cli\u003embstring\u003c/li\u003e\u003cli\u003emcrypt\u003c/li\u003e\u003cli\u003emysqlnd\u003c/li\u003e\u003cli\u003emysqlnd_mysql\u003c/li\u003e\u003cli\u003emysqlnd_mysqli\u003c/li\u003e\u003cli\u003eodbc\u003c/li\u003e\u003cli\u003epdo\u003c/li\u003e\u003cli\u003epgsql\u003c/li\u003e\u003cli\u003ephar\u003c/li\u003e\u003cli\u003eposix\u003c/li\u003e\u003cli\u003epspell\u003c/li\u003e\u003cli\u003erecode\u003c/li\u003e\u003cli\u003eshmop\u003c/li\u003e\u003cli\u003esimplexml\u003c/li\u003e\u003cli\u003esnmp\u003c/li\u003e\u003cli\u003esoap\u003c/li\u003e\u003cli\u003esockets\u003c/li\u003e\u003cli\u003esqlite3\u003c/li\u003e\u003cli\u003esysvmsg\u003c/li\u003e\u003cli\u003esysvsem\u003c/li\u003e\u003cli\u003esysvshm\u003c/li\u003e\u003cli\u003etidy\u003c/li\u003e\u003cli\u003etokenizer\u003c/li\u003e\u003cli\u003exml\u003c/li\u003e\u003cli\u003exmlwriter\u003c/li\u003e\u003cli\u003exsl\u003c/li\u003e\u003cli\u003ezip\u003c/li\u003e\u003cli\u003epdo_mysqlnd\u003c/li\u003e\u003cli\u003epdo_odbc\u003c/li\u003e\u003cli\u003epdo_pgsql\u003c/li\u003e\u003cli\u003epdo_sqlite\u003c/li\u003e\u003cli\u003ewddx\u003c/li\u003e\u003cli\u003exmlreader\u003c/li\u003e\u003cli\u003exmlrpc\u003c/li\u003e\u003cli\u003eigbinary\u003c/li\u003e\u003cli\u003eredis\u003c/li\u003e\u003c/ol\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsajetek-developer%2Fphp5.6-ols-ssl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsajetek-developer%2Fphp5.6-ols-ssl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsajetek-developer%2Fphp5.6-ols-ssl/lists"}