Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AhmedHelalAhmed/6a78b378517d34e593ceb9bea30cb005 to your computer and use it in GitHub Desktop.
Save AhmedHelalAhmed/6a78b378517d34e593ceb9bea30cb005 to your computer and use it in GitHub Desktop.
Setup a Virtual Host in Windows with XAMPP Server
steps:
https://ultimatefosters.com/hosting/setup-a-virtual-host-in-windows-with-xampp-server/
sample of required code
```
<VirtualHost *:80>
ServerAdmin webmaster@localhost.com
DocumentRoot "D:\projects\cloudsystem\public"
ServerName falconvizcloud.test
<Directory "D:\projects\cloudsystem\public">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Allow from all
Require all granted
</Directory>
</VirtualHost>
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment