Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save prantomollick/63128fcfb17f7264d8d098ffe1bfb59b to your computer and use it in GitHub Desktop.
Save prantomollick/63128fcfb17f7264d8d098ffe1bfb59b to your computer and use it in GitHub Desktop.
Laragon Virtual Host Custom Path In Windows Operating System
<VirtualHost *:80>
ServerName name.localhost
ServerAlias name.localhost
DocumentRoot "drive:\theme\path\www"
<Directory "drive:\theme\path\www">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog "logs/dummy-host2.example.com-error.log"
CustomLog "logs/dummy-host2.example.com-access.log" common
</VirtualHost>
@prantomollick
Copy link
Author

public

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment