{"id":19423231,"url":"https://github.com/atomjoy/xampp","last_synced_at":"2026-05-15T00:41:52.138Z","repository":{"id":174193624,"uuid":"651904600","full_name":"atomjoy/xampp","owner":"atomjoy","description":"Xampp virtualhosts for your domain or subdomain with SSL on Apache2 and Laravel.","archived":false,"fork":false,"pushed_at":"2024-06-04T18:11:39.000Z","size":30,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-07T18:53:33.828Z","etag":null,"topics":["domain-xampp","ssl-xampp","xampp-custom-domain","xampp-domain","xampp-server","xampp-ssl","xampp-vhost","xampp-virtualhost","xampp-windows"],"latest_commit_sha":null,"homepage":"https://github.com/atomjoy/xampp","language":"PHP","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/atomjoy.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":"2023-06-10T12:58:20.000Z","updated_at":"2024-06-04T18:13:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"2dfbe8bc-f780-49f1-8e56-30809d5f409b","html_url":"https://github.com/atomjoy/xampp","commit_stats":null,"previous_names":["atomjoy/xampp"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomjoy%2Fxampp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomjoy%2Fxampp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomjoy%2Fxampp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomjoy%2Fxampp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atomjoy","download_url":"https://codeload.github.com/atomjoy/xampp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240603021,"owners_count":19827631,"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":["domain-xampp","ssl-xampp","xampp-custom-domain","xampp-domain","xampp-server","xampp-ssl","xampp-vhost","xampp-virtualhost","xampp-windows"],"created_at":"2024-11-10T13:37:29.501Z","updated_at":"2026-05-15T00:41:52.129Z","avatar_url":"https://github.com/atomjoy.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Xampp local domains with SSL\n\nXampp virtual hosts for your domain or subdomain with SSL on Apache2 and Laravel.\n\n## Windows add local host for app.test domain\n\nOpen file as administrator **C:\\Windows\\System32\\drivers\\etc\\hosts** and append hosts\n\n```sh\n# Local domain\n127.0.0.10 app.test www.app.test\n\n# Next domain\n# 127.0.0.11 example.com www.example.com\n```\n\n## Create directory for domain and index.php file\n\n```sh\n# Domain dirs\nD:/web/localhost\nD:/web/app.test/public\n\n# Apache index.php file with\n# \u003c?php echo \"works ...\";\nD:/web/localhost/index.php\nD:/web/app.test/public/index.php\n```\n\n## Xampp Apache config \n\nInclude config files directory add in **xampp/apache/conf/extra/httpd-vhosts.conf**\n\n```sh\nInclude \"conf/extra/vhosts/*.conf\"\n```\n\n## Xampp Apache Virtualhost\n\nAdd in **xampp/apache/conf/extra/vhosts/app.test.conf**\n\n```sh\n\u003cVirtualHost 127.0.0.10:80\u003e\n    DocumentRoot \"D:/web/app.test/public\"\n    DirectoryIndex index.php\n    ServerName app.test\n    ServerAlias www.app.test\n\n    ErrorLog \"D:/web/app.test/storage/logs/app.test.error.log\"\n    CustomLog \"D:/web/app.test/storage/logs/app.test.access.log\" common\n\n    # Redirect to https\n    #RewriteEngine On\n    #RewriteCond %{HTTPS} off\n    #RewriteRule (.*) https://%{SERVER_NAME}$1 [R,L]\n\n    \u003cDirectory \"D:/web/app.test/public\"\u003e\n        Options Indexes FollowSymLinks MultiViews\n        AllowOverride all\n        Order Deny,Allow\n        Allow from all\n        Require all granted\n    \u003c/Directory\u003e\n\u003c/VirtualHost\u003e\n\n\u003cVirtualHost 127.0.0.10:443\u003e\n    DocumentRoot \"D:/web/app.test/public\"\n    ServerName app.test\n    ServerAlias www.app.test\n\n    SSLEngine on\n    SSLCertificateFile \"conf/ssl.crt/server.crt\"\n    SSLCertificateKeyFile \"conf/ssl.key/server.key\"\n\n    \u003cDirectory \"D:/web/app.test/public\"\u003e\n        Options Indexes FollowSymLinks MultiViews\n        AllowOverride all\n        Order Deny,Allow\n        Allow from all\n        Require all granted\n    \u003c/Directory\u003e\n\u003c/VirtualHost\u003e\n```\n\n## Restart Apache and browser\n\nRestart Xampp Apache server from xampp panel or restart Windows.\n\n## Run xampp server and website\n\nAccept invalid SSL for domain in (advanced button).\n\n\u003chttps://app.test\u003e\n\n## Testing\n\nChange app.test to a domain with dns mx records (for email testing in Laravel: app.test).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomjoy%2Fxampp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatomjoy%2Fxampp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomjoy%2Fxampp/lists"}